23 lines
680 B
C#
23 lines
680 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace VetClinicBusinessLogic.ViewModels
|
|||
|
{
|
|||
|
public class VisitViewModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public DateTime VisitsDate { get; set; }
|
|||
|
public decimal Sum { get; set; }
|
|||
|
public int? EmployeeId { get; set; }
|
|||
|
public int ClientId { get; set; }
|
|||
|
public int ServiceId { get; set; }
|
|||
|
public string ServiceName { get; set; }
|
|||
|
public string ClientName { get; set; }
|
|||
|
public string? EmployeeName { get; set; }
|
|||
|
public Dictionary<int, string> VisitServices { get; set; }
|
|||
|
}
|
|||
|
}
|