44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
|
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; }
|
|||
|
}
|