14 lines
314 B
C#
14 lines
314 B
C#
using LawCompanyDataModels.Models;
|
|
|
|
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; }
|
|
}
|
|
}
|