22 lines
452 B
C#
22 lines
452 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace TestApplication.Context;
|
|||
|
|
|||
|
public partial class ProductSale1
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public DateTime SaleDate { get; set; }
|
|||
|
|
|||
|
public int ProductId { get; set; }
|
|||
|
|
|||
|
public int Quantity { get; set; }
|
|||
|
|
|||
|
public int? ClientServiceId { get; set; }
|
|||
|
|
|||
|
public virtual ClientService1? ClientService { get; set; }
|
|||
|
|
|||
|
public virtual Product1 Product { get; set; } = null!;
|
|||
|
}
|