//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace examPrepare
{
using System;
using System.Collections.Generic;
public partial class Product
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Product()
{
this.OrderProduct = new HashSet();
}
public string ProductArticleNumber { get; set; }
public string ProductName { get; set; }
public string ProductDescription { get; set; }
public int ProductCategory { get; set; }
public int ProductManufacturer { get; set; }
public decimal ProductCost { get; set; }
public Nullable ProductDiscountAmount { get; set; }
public int ProductQuantityInStock { get; set; }
public string ProductUnit { get; set; }
public Nullable ProductVendor { get; set; }
public Nullable ProductCurrentDiscount { get; set; }
public string ProductPhoto { get; set; }
public virtual Manufacturer Manufacturer { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection OrderProduct { get; set; }
public virtual ProductVendor ProductVendor1 { get; set; }
public virtual ProductCategory ProductCategory1 { get; set; }
}
}