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 IConsultationModel : IId
|
|
|
|
|
{
|
|
|
|
|
Dictionary<int, ILawyerModel> ConsultationLawyers { get; }
|
|
|
|
|
double Cost { get; }
|
|
|
|
|
DateTime ConsultationDate { get; }
|
|
|
|
|
public int CaseId { get; }
|
|
|
|
|
public int GuarantorId { get; }
|
|
|
|
|
}
|
2024-05-01 18:40:30 +04:00
|
|
|
|
}
|