From 1724d0f4cf0f099c8d29a00756e6fffd486f947c 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: Mon, 27 May 2024 02:44:51 +0400 Subject: [PATCH] =?UTF-8?q?=D0=9C=D0=BE=D0=B4=D0=B5=D0=BB=D0=B8=20=D0=B4?= =?UTF-8?q?=D0=B0=D0=BD=D0=BD=D1=8B=D1=85=20=D0=B4=D0=BB=D1=8F=20=D0=98?= =?UTF-8?q?=D1=81=D0=BF=D0=BE=D0=BB=D0=BD=D0=B8=D1=82=D0=B5=D0=BB=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LawCompany/LawCompanyDataModels/Models/ICaseModel.cs | 1 - LawCompany/LawCompanyDataModels/Models/IVisitModel.cs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/LawCompany/LawCompanyDataModels/Models/ICaseModel.cs b/LawCompany/LawCompanyDataModels/Models/ICaseModel.cs index e7e6c4a..cb6fa31 100644 --- a/LawCompany/LawCompanyDataModels/Models/ICaseModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/ICaseModel.cs @@ -8,7 +8,6 @@ namespace LawCompanyDataModels.Models 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/IVisitModel.cs b/LawCompany/LawCompanyDataModels/Models/IVisitModel.cs index 9117cd2..e5fa033 100644 --- a/LawCompany/LawCompanyDataModels/Models/IVisitModel.cs +++ b/LawCompany/LawCompanyDataModels/Models/IVisitModel.cs @@ -4,7 +4,7 @@ { Dictionary VisitClients { get; } DateTime VisitDate { get; } - int HearingId { get; } + int? HearingId { get; } public int ExecutorId { get; } } }