compose_sample/TestApplication/Context/ClientService1.cs

26 lines
662 B
C#
Raw Normal View History

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<DocumentByService> DocumentByServices { get; set; } = new List<DocumentByService>();
public virtual ICollection<ProductSale1> ProductSale1s { get; set; } = new List<ProductSale1>();
public virtual Service Service { get; set; } = null!;
}