12 lines
317 B
C#
12 lines
317 B
C#
namespace LawCompanyDataModels.Models
|
|
{
|
|
public interface IConsultationModel : IId
|
|
{
|
|
Dictionary<int, ILawyerModel> ConsultationLawyers { get; }
|
|
double Cost { get; }
|
|
DateTime ConsultationDate { get; }
|
|
public int CaseId { get; }
|
|
public int GuarantorId { get; }
|
|
}
|
|
}
|