2023-05-13 13:37:59 +04:00
|
|
|
|
using BeautySalonDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace BeautySalonContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class VisitBindingModel : IVisitModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public DateTime DateOfVisit { get; set; }
|
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
|
public int MasterId { get; set; }
|
|
|
|
|
public int ServiceId { get; set; }
|
2023-05-13 15:11:42 +04:00
|
|
|
|
public string ClientFIO { get; set; } = string.Empty;
|
|
|
|
|
public string MasterFIO { get; set; } = string.Empty;
|
|
|
|
|
public string ServiceName { get; set; } = string.Empty;
|
2023-05-13 14:11:00 +04:00
|
|
|
|
public double Sum { get; set; }
|
2023-05-13 13:37:59 +04:00
|
|
|
|
}
|
|
|
|
|
}
|