using System; using System.Collections.Generic; namespace Blagodat.Models; public partial class Order { public int IdOrder { get; set; } public int ClientCode { get; set; } public DateOnly DateOfCreation { get; set; } public TimeOnly OrderTime { get; set; } public string Status { get; set; } = null!; public DateOnly? ClosingDate { get; set; } public int RentalTimeMin { get; set; } public virtual ICollection OrdersAndServices { get; set; } = new List(); }