demo_trade/Data/RemoteData/Entity/Product.cs

44 lines
1.1 KiB
C#
Raw Normal View History

2024-10-04 12:41:04 +00:00
using System;
using System.Collections.Generic;
namespace demo_trade.Data.RemoteData.Entity;
public partial class Product
{
public string Productarticlenumber { get; set; } = null!;
public string? Productname { get; set; }
public string? Productdescription { get; set; }
public byte[]? Productphoto { get; set; }
public decimal? Productcost { get; set; }
public short? Productdiscountamount { get; set; }
public int? Productquantityinstock { get; set; }
public string? Imagename { get; set; }
public int? UnitId { get; set; }
public int? Productmaxdiscount { get; set; }
public int? CategoryId { get; set; }
public int? ManufacturerId { get; set; }
public int? PorductproviderId { get; set; }
public virtual Category? Category { get; set; }
public virtual Manufacturer? Manufacturer { get; set; }
public virtual ICollection<Orderproduct> Orderproducts { get; set; } = new List<Orderproduct>();
public virtual Porductprovider? Porductprovider { get; set; }
public virtual Productunit? Unit { get; set; }
}