diff --git a/LawCompany/LawCompany/Enums/CaseStatus.cs b/LawCompany/LawCompany/Enums/CaseStatus.cs
deleted file mode 100644
index 65e52d4..0000000
--- a/LawCompany/LawCompany/Enums/CaseStatus.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace LawCompanyDataModels.Enums
-{
- public enum CaseStatus
- {
- Неизвестен = -1,
- Принято = 0,
- АнализДелаИПодготовкаДокументов = 1,
- СлушанияДела = 2,
- ЗакрытиеДела = 3
- }
-}
diff --git a/LawCompany/LawCompany/IId.cs b/LawCompany/LawCompany/IId.cs
deleted file mode 100644
index 0db43c3..0000000
--- a/LawCompany/LawCompany/IId.cs
+++ /dev/null
@@ -1,7 +0,0 @@
-namespace LawCompanyDataModels
-{
- public interface IId
- {
- int Id { get; }
- }
-}
diff --git a/LawCompany/LawCompany/LawCompanyDataModels.csproj b/LawCompany/LawCompany/LawCompanyDataModels.csproj
deleted file mode 100644
index 7830c43..0000000
--- a/LawCompany/LawCompany/LawCompanyDataModels.csproj
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
- net6.0
- enable
- enable
-
-
-
-
- all
- runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
diff --git a/LawCompany/LawCompany/Models/ICaseModel.cs b/LawCompany/LawCompany/Models/ICaseModel.cs
deleted file mode 100644
index ca3240f..0000000
--- a/LawCompany/LawCompany/Models/ICaseModel.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using LawCompanyDataModels.Enums;
-
-namespace LawCompanyDataModels.Models
-{
- public interface ICaseModel : IId
- {
- Dictionary CaseClients { get; }
- string Name { get; }
- CaseStatus Status { get; }
- string CaseType { get; }
- DateTime DateCreate { get; }
- DateTime? DateImplement { get; }
- public int ExecutorId { get; }
- }
-}
diff --git a/LawCompany/LawCompany/Models/IClientModel.cs b/LawCompany/LawCompany/Models/IClientModel.cs
deleted file mode 100644
index 08d1af9..0000000
--- a/LawCompany/LawCompany/Models/IClientModel.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace LawCompanyDataModels.Models
-{
- public interface IClientModel : IId
- {
- string FIO { get; }
- string Phone { get; }
- string Email { get; }
- public int ExecutorId { get; }
- }
-}
diff --git a/LawCompany/LawCompany/Models/IConsultationModel.cs b/LawCompany/LawCompany/Models/IConsultationModel.cs
deleted file mode 100644
index 318c80b..0000000
--- a/LawCompany/LawCompany/Models/IConsultationModel.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-namespace LawCompanyDataModels.Models
-{
- public interface IConsultationModel : IId
- {
- Dictionary ConsultationLawyers { get; }
- double Cost { get; }
- DateTime ConsultationDate { get; }
- public int CaseId { get; }
- public int GuarantorId { get; }
- }
-}
diff --git a/LawCompany/LawCompany/Models/IExecutorModel.cs b/LawCompany/LawCompany/Models/IExecutorModel.cs
deleted file mode 100644
index e4414e5..0000000
--- a/LawCompany/LawCompany/Models/IExecutorModel.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace LawCompanyDataModels.Models
-{
- public interface IExecutorModel : IId
- {
- string FIO { get; }
- string Email { get; }
- string Password { get; }
- }
-}
diff --git a/LawCompany/LawCompany/Models/IGuarantorModel.cs b/LawCompany/LawCompany/Models/IGuarantorModel.cs
deleted file mode 100644
index e0b78f4..0000000
--- a/LawCompany/LawCompany/Models/IGuarantorModel.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace LawCompanyDataModels.Models
-{
- public interface IGuarantorModel : IId
- {
- string FIO { get; }
- string Email { get; }
- string Password { get; }
- }
-}
diff --git a/LawCompany/LawCompany/Models/IHearingModel.cs b/LawCompany/LawCompany/Models/IHearingModel.cs
deleted file mode 100644
index d253f9f..0000000
--- a/LawCompany/LawCompany/Models/IHearingModel.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace LawCompanyDataModels.Models
-{
- public interface IHearingModel : IId
- {
- Dictionary HearingLawyers { get; }
- DateTime HearingDate { get; }
- string Judge { get; }
- public int GuarantorId { get; }
- }
-}
diff --git a/LawCompany/LawCompany/Models/ILawyerModel.cs b/LawCompany/LawCompany/Models/ILawyerModel.cs
deleted file mode 100644
index 00ce840..0000000
--- a/LawCompany/LawCompany/Models/ILawyerModel.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace LawCompanyDataModels.Models
-{
- public interface ILawyerModel : IId
- {
- string FIO { get; }
- string Phone { get; }
- string Email { get; }
- public int GuarantorId { get; }
- }
-}
diff --git a/LawCompany/LawCompany/Models/IVisitModel.cs b/LawCompany/LawCompany/Models/IVisitModel.cs
deleted file mode 100644
index 4a6e9c9..0000000
--- a/LawCompany/LawCompany/Models/IVisitModel.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace LawCompanyDataModels.Models
-{
- public interface IVisitModel : IId
- {
- Dictionary VisitClients { get; }
- DateTime VisitDate { get; }
- int HearingId { get; }
- public int ExecutorId { get; }
- }
-}