26 lines
662 B
C#
26 lines
662 B
C#
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!;
|
|
}
|