compose_sample/TestApplication/Context/Productsale.cs

22 lines
456 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
namespace TestApplication.Context;
public partial class Productsale
{
public int Id { get; set; }
public string Saledate { get; set; } = null!;
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!;
}