SUBD_PIbd-21_Balberova_D.N./BeautySaloon/BeautySaloonDataModels/IOrderModel.cs
2023-03-29 20:00:53 +04:00

13 lines
310 B
C#

namespace BeautySaloonDataModels
{
public interface IOrderModel
{
int Id { get; }
DateOnly Date { get; }
decimal Sum { get; }
int ClientId { get; }
int EmployeeId { get; }
Dictionary<int, (TimeOnly, IServiceModel, int)> OrderServices { get; }
}
}