namespace BeautySaloonDataModels { public interface IOrderModel { int Id { get; } DateOnly Date { get; } decimal Sum { get; } int ClientId { get; } int EmployeeId { get; } Dictionary OrderServices { get; } } }