namespace LawFimDataModels.Models { public interface IConsultationModel: IId { Dictionary ConsultationLawyers { get; } double Cost { get; } DateTime ConsultationDate { get; } public int CaseId { get; } public int GuarantorId { get; } } }