From 4cd7242439515f9cc3c1492bc2532f5a6d4edc8c Mon Sep 17 00:00:00 2001 From: sofiaivv Date: Wed, 1 May 2024 00:06:06 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BF=D1=83=D0=B1=D0=BB=D0=B8=D0=BA=D0=B8)))?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LawCompany/LawCompany/Enums/CaseStatus.cs | 12 ++++++++++++ LawCompany/LawCompany/IId.cs | 12 ++++++++++++ LawCompany/LawCompany/Models/ICaseModel.cs | 12 ++++++++++++ LawCompany/LawCompany/Models/IClientModel.cs | 12 ++++++++++++ LawCompany/LawCompany/Models/IVisitModel.cs | 12 ++++++++++++ 5 files changed, 60 insertions(+) create mode 100644 LawCompany/LawCompany/Enums/CaseStatus.cs create mode 100644 LawCompany/LawCompany/IId.cs create mode 100644 LawCompany/LawCompany/Models/ICaseModel.cs create mode 100644 LawCompany/LawCompany/Models/IClientModel.cs create mode 100644 LawCompany/LawCompany/Models/IVisitModel.cs diff --git a/LawCompany/LawCompany/Enums/CaseStatus.cs b/LawCompany/LawCompany/Enums/CaseStatus.cs new file mode 100644 index 0000000..84e5d36 --- /dev/null +++ b/LawCompany/LawCompany/Enums/CaseStatus.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyDataModels.Enums +{ + internal class CaseStatus + { + } +} diff --git a/LawCompany/LawCompany/IId.cs b/LawCompany/LawCompany/IId.cs new file mode 100644 index 0000000..d4638a6 --- /dev/null +++ b/LawCompany/LawCompany/IId.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyDataModels +{ + internal class IId + { + } +} diff --git a/LawCompany/LawCompany/Models/ICaseModel.cs b/LawCompany/LawCompany/Models/ICaseModel.cs new file mode 100644 index 0000000..e121c00 --- /dev/null +++ b/LawCompany/LawCompany/Models/ICaseModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyDataModels.Models +{ + internal class ICaseModel + { + } +} diff --git a/LawCompany/LawCompany/Models/IClientModel.cs b/LawCompany/LawCompany/Models/IClientModel.cs new file mode 100644 index 0000000..28bd026 --- /dev/null +++ b/LawCompany/LawCompany/Models/IClientModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyDataModels.Models +{ + internal class IClientModel + { + } +} diff --git a/LawCompany/LawCompany/Models/IVisitModel.cs b/LawCompany/LawCompany/Models/IVisitModel.cs new file mode 100644 index 0000000..3455101 --- /dev/null +++ b/LawCompany/LawCompany/Models/IVisitModel.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace LawCompanyDataModels.Models +{ + internal class IVisitModel + { + } +}