diff --git a/LawCompany/LawCompany.sln b/LawCompany/LawCompany.sln index caaab5c..c4efb55 100644 --- a/LawCompany/LawCompany.sln +++ b/LawCompany/LawCompany.sln @@ -9,9 +9,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LawCompanyBusinessLogic", " EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LawCompanyDatabaseImplement", "LawCompanyDatabaseImplement\LawCompanyDatabaseImplement.csproj", "{9A4CBD1F-020F-4036-A71D-AB6BF3489EE0}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LawCompanyDataModels", "LawCompanyDataModels\LawCompanyDataModels.csproj", "{152E41DA-5E16-41FE-BA0A-20488C16AA34}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LawCompanyRestApi", "LawCompanyRestApi\LawCompanyRestApi.csproj", "{EB5AE263-399B-49A4-8C91-5128638C5A93}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LawCompanyRestApi", "LawCompanyRestApi\LawCompanyRestApi.csproj", "{EB5AE263-399B-49A4-8C91-5128638C5A93}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LawCompanyDataModels", "LawCompanyDataModels\LawCompanyDataModels.csproj", "{D16E073F-6E02-410D-89DC-67ECE1E1A0A6}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -31,14 +31,14 @@ Global {9A4CBD1F-020F-4036-A71D-AB6BF3489EE0}.Debug|Any CPU.Build.0 = Debug|Any CPU {9A4CBD1F-020F-4036-A71D-AB6BF3489EE0}.Release|Any CPU.ActiveCfg = Release|Any CPU {9A4CBD1F-020F-4036-A71D-AB6BF3489EE0}.Release|Any CPU.Build.0 = Release|Any CPU - {152E41DA-5E16-41FE-BA0A-20488C16AA34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {152E41DA-5E16-41FE-BA0A-20488C16AA34}.Debug|Any CPU.Build.0 = Debug|Any CPU - {152E41DA-5E16-41FE-BA0A-20488C16AA34}.Release|Any CPU.ActiveCfg = Release|Any CPU - {152E41DA-5E16-41FE-BA0A-20488C16AA34}.Release|Any CPU.Build.0 = Release|Any CPU {EB5AE263-399B-49A4-8C91-5128638C5A93}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {EB5AE263-399B-49A4-8C91-5128638C5A93}.Debug|Any CPU.Build.0 = Debug|Any CPU {EB5AE263-399B-49A4-8C91-5128638C5A93}.Release|Any CPU.ActiveCfg = Release|Any CPU {EB5AE263-399B-49A4-8C91-5128638C5A93}.Release|Any CPU.Build.0 = Release|Any CPU + {D16E073F-6E02-410D-89DC-67ECE1E1A0A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D16E073F-6E02-410D-89DC-67ECE1E1A0A6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D16E073F-6E02-410D-89DC-67ECE1E1A0A6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D16E073F-6E02-410D-89DC-67ECE1E1A0A6}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/LawCompany/LawCompanyBusinessLogic/LawCompanyBusinessLogic.csproj b/LawCompany/LawCompanyBusinessLogic/LawCompanyBusinessLogic.csproj index fb20491..90b8bbc 100644 --- a/LawCompany/LawCompanyBusinessLogic/LawCompanyBusinessLogic.csproj +++ b/LawCompany/LawCompanyBusinessLogic/LawCompanyBusinessLogic.csproj @@ -1,4 +1,4 @@ - + net6.0 diff --git a/LawCompany/LawCompanyContracts/LawCompanyContracts.csproj b/LawCompany/LawCompanyContracts/LawCompanyContracts.csproj index 97797bd..69767fb 100644 --- a/LawCompany/LawCompanyContracts/LawCompanyContracts.csproj +++ b/LawCompany/LawCompanyContracts/LawCompanyContracts.csproj @@ -1,4 +1,4 @@ - + net6.0 diff --git a/LawCompany/LawCompanyDataModels/Enums/CaseStatus.cs b/LawCompany/LawCompanyDataModels/Enums/CaseStatus.cs index 65e52d4..964fd4c 100644 --- a/LawCompany/LawCompanyDataModels/Enums/CaseStatus.cs +++ b/LawCompany/LawCompanyDataModels/Enums/CaseStatus.cs @@ -1,11 +1,11 @@ namespace LawCompanyDataModels.Enums { - public enum CaseStatus - { - Неизвестен = -1, - Принято = 0, - АнализДелаИПодготовкаДокументов = 1, - СлушанияДела = 2, - ЗакрытиеДела = 3 - } + public enum CaseStatus + { + Неизвестен = -1, + Принято = 0, + АнализДелаИПодготовкаДокументов = 1, + СлушанияДела = 2, + ЗакрытиеДела = 3 + } } diff --git a/LawCompany/LawCompanyDataModels/IId.cs b/LawCompany/LawCompanyDataModels/IId.cs index 0db43c3..45c308f 100644 --- a/LawCompany/LawCompanyDataModels/IId.cs +++ b/LawCompany/LawCompanyDataModels/IId.cs @@ -1,7 +1,7 @@ namespace LawCompanyDataModels { - public interface IId - { - int Id { get; } - } + public interface IId + { + int Id { get; } + } } diff --git a/LawCompany/LawCompanyDataModels/LawCompanyDataModels.csproj b/LawCompany/LawCompanyDataModels/LawCompanyDataModels.csproj index 7830c43..68a91e3 100644 --- a/LawCompany/LawCompanyDataModels/LawCompanyDataModels.csproj +++ b/LawCompany/LawCompanyDataModels/LawCompanyDataModels.csproj @@ -1,4 +1,4 @@ - + net6.0 diff --git a/LawCompany/LawCompanyDataModels/Models/ICaseModel.cs b/LawCompany/LawCompanyDataModels/Models/ICaseModel.cs index ca3240f..3381110 100644 --- a/LawCompany/LawCompanyDataModels/Models/ICaseModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/ICaseModel.cs @@ -2,14 +2,14 @@ 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 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/LawCompanyDataModels/Models/IClientModel.cs b/LawCompany/LawCompanyDataModels/Models/IClientModel.cs index 08d1af9..d0e5f72 100644 --- a/LawCompany/LawCompanyDataModels/Models/IClientModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/IClientModel.cs @@ -1,10 +1,10 @@ namespace LawCompanyDataModels.Models { - public interface IClientModel : IId - { - string FIO { get; } - string Phone { get; } - string Email { get; } + public interface IClientModel : IId + { + string FIO { get; } + string Phone { get; } + string Email { get; } public int ExecutorId { get; } } } diff --git a/LawCompany/LawCompanyDataModels/Models/IConsultationModel.cs b/LawCompany/LawCompanyDataModels/Models/IConsultationModel.cs index 318c80b..25b017a 100644 --- a/LawCompany/LawCompanyDataModels/Models/IConsultationModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/IConsultationModel.cs @@ -1,11 +1,11 @@ namespace LawCompanyDataModels.Models { - public interface IConsultationModel : IId - { - Dictionary ConsultationLawyers { get; } - double Cost { get; } - DateTime ConsultationDate { get; } - public int CaseId { get; } - public int GuarantorId { get; } - } + 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/LawCompanyDataModels/Models/IGuarantorModel.cs b/LawCompany/LawCompanyDataModels/Models/IGuarantorModel.cs index e0b78f4..da5d508 100644 --- a/LawCompany/LawCompanyDataModels/Models/IGuarantorModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/IGuarantorModel.cs @@ -1,9 +1,9 @@ namespace LawCompanyDataModels.Models { - public interface IGuarantorModel : IId - { - string FIO { get; } - string Email { get; } - string Password { get; } - } + public interface IGuarantorModel : IId + { + string FIO { get; } + string Email { get; } + string Password { get; } + } } diff --git a/LawCompany/LawCompanyDataModels/Models/IHearingModel.cs b/LawCompany/LawCompanyDataModels/Models/IHearingModel.cs index d253f9f..b5da969 100644 --- a/LawCompany/LawCompanyDataModels/Models/IHearingModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/IHearingModel.cs @@ -1,10 +1,10 @@ namespace LawCompanyDataModels.Models { - public interface IHearingModel : IId - { - Dictionary HearingLawyers { get; } - DateTime HearingDate { get; } - string Judge { get; } - public int GuarantorId { get; } - } + public interface IHearingModel : IId + { + Dictionary HearingLawyers { get; } + DateTime HearingDate { get; } + string Judge { get; } + public int GuarantorId { get; } + } } diff --git a/LawCompany/LawCompanyDataModels/Models/ILawyerModel.cs b/LawCompany/LawCompanyDataModels/Models/ILawyerModel.cs index 00ce840..1cdf57b 100644 --- a/LawCompany/LawCompanyDataModels/Models/ILawyerModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/ILawyerModel.cs @@ -6,11 +6,11 @@ using System.Threading.Tasks; namespace LawCompanyDataModels.Models { - public interface ILawyerModel : IId - { - string FIO { get; } - string Phone { get; } - string Email { get; } - public int GuarantorId { get; } - } + public interface ILawyerModel : IId + { + string FIO { get; } + string Phone { get; } + string Email { get; } + public int GuarantorId { get; } + } } diff --git a/LawCompany/LawCompanyDataModels/Models/IVisitModel.cs b/LawCompany/LawCompanyDataModels/Models/IVisitModel.cs index 4a6e9c9..9117cd2 100644 --- a/LawCompany/LawCompanyDataModels/Models/IVisitModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/IVisitModel.cs @@ -1,10 +1,10 @@ namespace LawCompanyDataModels.Models { - public interface IVisitModel : IId - { - Dictionary VisitClients { get; } - DateTime VisitDate { get; } - int HearingId { get; } + public interface IVisitModel : IId + { + Dictionary VisitClients { get; } + DateTime VisitDate { get; } + int HearingId { get; } public int ExecutorId { get; } } }