diff --git a/LawCompany/LawCompany/Models/ICaseModel.cs b/LawCompany/LawCompany/Models/ICaseModel.cs index 9cb1a9f..ca3240f 100644 --- a/LawCompany/LawCompany/Models/ICaseModel.cs +++ b/LawCompany/LawCompany/Models/ICaseModel.cs @@ -10,5 +10,6 @@ namespace LawCompanyDataModels.Models 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 index 795b2f7..08d1af9 100644 --- a/LawCompany/LawCompany/Models/IClientModel.cs +++ b/LawCompany/LawCompany/Models/IClientModel.cs @@ -5,5 +5,6 @@ string FIO { get; } string Phone { get; } string Email { get; } - } + public int ExecutorId { get; } + } } diff --git a/LawCompany/LawCompany/Models/IVisitModel.cs b/LawCompany/LawCompany/Models/IVisitModel.cs index c804a05..4a6e9c9 100644 --- a/LawCompany/LawCompany/Models/IVisitModel.cs +++ b/LawCompany/LawCompany/Models/IVisitModel.cs @@ -5,5 +5,6 @@ Dictionary VisitClients { get; } DateTime VisitDate { get; } int HearingId { get; } - } + public int ExecutorId { get; } + } }