using System; using System.Collections.Generic; namespace TestApplication.Context; public partial class Clientservice { 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 Client Client { get; set; } = null!; public virtual ICollection Documentbyservice1s { get; set; } = new List(); public virtual ICollection Productsales { get; set; } = new List(); public virtual Service1 Service { get; set; } = null!; }