12 lines
334 B
C#
12 lines
334 B
C#
namespace LawFimDataModels.Models
|
|
{
|
|
public interface IConsultationModel: IId
|
|
{
|
|
Dictionary<int, ILawyerModel> ConsultationLawyers { get; }
|
|
double Cost { get; }
|
|
DateTime CosultationDate { get; }
|
|
public int CaseId { get; }
|
|
public int GuarantorId { get; } // не уверена
|
|
}
|
|
}
|