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 + { + } +}