22 lines
443 B
C#
22 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Demo.EntityModels;
|
|
|
|
public partial class Productsale
|
|
{
|
|
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 Clientservice? Clientservice { get; set; }
|
|
|
|
public virtual Product Product { get; set; } = null!;
|
|
}
|