compose_sample/TestApplication/Context/Clientservice.cs

26 lines
661 B
C#
Raw Permalink Normal View History

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<Documentbyservice1> Documentbyservice1s { get; set; } = new List<Documentbyservice1>();
public virtual ICollection<Productsale> Productsales { get; set; } = new List<Productsale>();
public virtual Service1 Service { get; set; } = null!;
}