From 6cd384571a2ceee95a462ed820c5cafe7972aa0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=BE=D1=84=D1=8C=D1=8F=20=D0=AF=D0=BA=D0=BE=D0=B1?= =?UTF-8?q?=D1=87=D1=83=D0=BA?= Date: Sun, 26 May 2024 08:32:11 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB?= =?UTF-8?q?=D0=B0=20=D0=BA=D0=BB=D0=B0=D1=81=D1=81=D1=8B=20=D0=A0=D0=B5?= =?UTF-8?q?=D0=BF=D0=BE=D1=80=D1=82=20=D0=B8=20=D0=9C=D1=8D=D0=B8=D0=BB=20?= =?UTF-8?q?=D0=B2=20=D0=9A=D0=BE=D0=BD=D1=82=D1=80=D0=B0=D0=BA=D1=82=D1=81?= =?UTF-8?q?=20(=D0=BF=D0=BE=D0=BA=D0=B0=20=D0=BF=D1=83=D1=81=D1=82=D1=8B?= =?UTF-8?q?=D0=B5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BindingModels/MailConfigBindingModel.cs | 12 ++++++++++++ .../BindingModels/MailSendInfoBindingModel.cs | 12 ++++++++++++ .../BindingModels/ReportExecutorBindingModel.cs | 12 ++++++++++++ .../BindingModels/ReportGuarantorBindingModel.cs | 12 ++++++++++++ .../BusinessLogicContracts/IReportExecutorLogic.cs | 12 ++++++++++++ .../BusinessLogicContracts/IReportGuarantorLogic.cs | 12 ++++++++++++ .../ViewModels/ReportClientCaseViewModel.cs | 12 ++++++++++++ .../ViewModels/ReportClientsViewModel.cs | 12 ++++++++++++ .../ViewModels/ReportLawyerHearingViewModel.cs | 12 ++++++++++++ .../ViewModels/ReportLawyersViewModel.cs | 12 ++++++++++++ 10 files changed, 120 insertions(+) create mode 100644 LawCompany/LawCompanyContracts/BindingModels/MailConfigBindingModel.cs create mode 100644 LawCompany/LawCompanyContracts/BindingModels/MailSendInfoBindingModel.cs create mode 100644 LawCompany/LawCompanyContracts/BindingModels/ReportExecutorBindingModel.cs create mode 100644 LawCompany/LawCompanyContracts/BindingModels/ReportGuarantorBindingModel.cs create mode 100644 LawCompany/LawCompanyContracts/BusinessLogicContracts/IReportExecutorLogic.cs create mode 100644 LawCompany/LawCompanyContracts/BusinessLogicContracts/IReportGuarantorLogic.cs create mode 100644 LawCompany/LawCompanyContracts/ViewModels/ReportClientCaseViewModel.cs create mode 100644 LawCompany/LawCompanyContracts/ViewModels/ReportClientsViewModel.cs create mode 100644 LawCompany/LawCompanyContracts/ViewModels/ReportLawyerHearingViewModel.cs create mode 100644 LawCompany/LawCompanyContracts/ViewModels/ReportLawyersViewModel.cs diff --git a/LawCompany/LawCompanyContracts/BindingModels/MailConfigBindingModel.cs b/LawCompany/LawCompanyContracts/BindingModels/MailConfigBindingModel.cs new file mode 100644 index 0000000..0730ad0 --- /dev/null +++ b/LawCompany/LawCompanyContracts/BindingModels/MailConfigBindingModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.BindingModels +{ + internal class MailConfigBindingModel + { + } +} diff --git a/LawCompany/LawCompanyContracts/BindingModels/MailSendInfoBindingModel.cs b/LawCompany/LawCompanyContracts/BindingModels/MailSendInfoBindingModel.cs new file mode 100644 index 0000000..a0b5a33 --- /dev/null +++ b/LawCompany/LawCompanyContracts/BindingModels/MailSendInfoBindingModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.BindingModels +{ + internal class MailSendInfoBindingModel + { + } +} diff --git a/LawCompany/LawCompanyContracts/BindingModels/ReportExecutorBindingModel.cs b/LawCompany/LawCompanyContracts/BindingModels/ReportExecutorBindingModel.cs new file mode 100644 index 0000000..21f2ff8 --- /dev/null +++ b/LawCompany/LawCompanyContracts/BindingModels/ReportExecutorBindingModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.BindingModels +{ + internal class ReportExecutorBindingModel + { + } +} diff --git a/LawCompany/LawCompanyContracts/BindingModels/ReportGuarantorBindingModel.cs b/LawCompany/LawCompanyContracts/BindingModels/ReportGuarantorBindingModel.cs new file mode 100644 index 0000000..347f5db --- /dev/null +++ b/LawCompany/LawCompanyContracts/BindingModels/ReportGuarantorBindingModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.BindingModels +{ + internal class ReportGuarantorBindingModel + { + } +} diff --git a/LawCompany/LawCompanyContracts/BusinessLogicContracts/IReportExecutorLogic.cs b/LawCompany/LawCompanyContracts/BusinessLogicContracts/IReportExecutorLogic.cs new file mode 100644 index 0000000..1bf00d2 --- /dev/null +++ b/LawCompany/LawCompanyContracts/BusinessLogicContracts/IReportExecutorLogic.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.BusinessLogicContracts +{ + internal class IReportExecutorLogic + { + } +} diff --git a/LawCompany/LawCompanyContracts/BusinessLogicContracts/IReportGuarantorLogic.cs b/LawCompany/LawCompanyContracts/BusinessLogicContracts/IReportGuarantorLogic.cs new file mode 100644 index 0000000..d393367 --- /dev/null +++ b/LawCompany/LawCompanyContracts/BusinessLogicContracts/IReportGuarantorLogic.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.BusinessLogicContracts +{ + internal class IReportGuarantorLogic + { + } +} diff --git a/LawCompany/LawCompanyContracts/ViewModels/ReportClientCaseViewModel.cs b/LawCompany/LawCompanyContracts/ViewModels/ReportClientCaseViewModel.cs new file mode 100644 index 0000000..802e613 --- /dev/null +++ b/LawCompany/LawCompanyContracts/ViewModels/ReportClientCaseViewModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.ViewModels +{ + internal class ReportClientCaseViewModel + { + } +} diff --git a/LawCompany/LawCompanyContracts/ViewModels/ReportClientsViewModel.cs b/LawCompany/LawCompanyContracts/ViewModels/ReportClientsViewModel.cs new file mode 100644 index 0000000..cb2b26a --- /dev/null +++ b/LawCompany/LawCompanyContracts/ViewModels/ReportClientsViewModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.ViewModels +{ + internal class ReportClientsViewModel + { + } +} diff --git a/LawCompany/LawCompanyContracts/ViewModels/ReportLawyerHearingViewModel.cs b/LawCompany/LawCompanyContracts/ViewModels/ReportLawyerHearingViewModel.cs new file mode 100644 index 0000000..324594e --- /dev/null +++ b/LawCompany/LawCompanyContracts/ViewModels/ReportLawyerHearingViewModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.ViewModels +{ + internal class ReportLawyerHearingViewModel + { + } +} diff --git a/LawCompany/LawCompanyContracts/ViewModels/ReportLawyersViewModel.cs b/LawCompany/LawCompanyContracts/ViewModels/ReportLawyersViewModel.cs new file mode 100644 index 0000000..0f08ed1 --- /dev/null +++ b/LawCompany/LawCompanyContracts/ViewModels/ReportLawyersViewModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyContracts.ViewModels +{ + internal class ReportLawyersViewModel + { + } +}