using System; using System.Collections.Generic; namespace blagodat.Models; public partial class Service { public int Id { get; set; } public string SeviceName { get; set; } = null!; public string CodeService { get; set; } = null!; public int Cost { get; set; } public virtual ICollection OrderServices { get; set; } = new List(); }