using System; using System.Collections.Generic; namespace TestApplication.Context; public partial class ClientService1 { public int Id { get; set; } public int ClientId { get; set; } public int ServiceId { get; set; } public DateTime StartTime { get; set; } public string? Comment { get; set; } public virtual Client1 Client { get; set; } = null!; public virtual ICollection DocumentByServices { get; set; } = new List(); public virtual ICollection ProductSale1s { get; set; } = new List(); public virtual Service Service { get; set; } = null!; }