2024-05-03 03:40:55 +04:00
|
|
|
|
using LawCompanyDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace LawCompanyDataModels.Models
|
2024-05-01 18:40:30 +04:00
|
|
|
|
{
|
2024-05-01 21:03:58 +04:00
|
|
|
|
public interface IHearingModel : IId
|
|
|
|
|
{
|
|
|
|
|
Dictionary<int, ILawyerModel> HearingLawyers { get; }
|
|
|
|
|
DateTime HearingDate { get; }
|
|
|
|
|
string Judge { get; }
|
|
|
|
|
public int GuarantorId { get; }
|
|
|
|
|
}
|
2024-05-01 18:40:30 +04:00
|
|
|
|
}
|