using System; using System.Collections.Generic; namespace Hard_Demo.Models; public partial class Service { public int Id { get; set; } public string ServiceName { get; set; } = null!; public string ServiceCode { get; set; } = null!; public string ServiceCost { get; set; } = null!; public virtual ICollection Idorders { get; set; } = new List(); }