2024-05-01 01:54:08 +04:00
|
|
|
|
using LawCompanyDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace LawCompanyContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class ConsultationBindingModel : IConsultationModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
2024-05-01 02:33:49 +04:00
|
|
|
|
public double Cost { get; set; }
|
2024-05-01 01:54:08 +04:00
|
|
|
|
public DateTime ConsultationDate { get; set; }
|
|
|
|
|
public int CaseId { get; set; }
|
|
|
|
|
public int GuarantorId { get; set; }
|
|
|
|
|
public Dictionary<int, ILawyerModel> ConsultationLawyers { get; set; } = new();
|
|
|
|
|
}
|
|
|
|
|
}
|