using System; using System.Collections.Generic; namespace Blagodat.Models; public partial class Service { public int IdServices { get; set; } public string? NameServices { get; set; } public string? CodeServices { get; set; } public decimal? CostPerHour { get; set; } public virtual ICollection OrdersAndServices { get; set; } = new List(); }