123456789101112131415161718192021222324252627282930313233343536373839 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код был создан из шаблона.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace OUP
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Product
- {
- public Product()
- {
- this.CashRegister = new HashSet<CashRegister>();
- this.SupplyProduct = new HashSet<SupplyProduct>();
- }
-
- public int IdProduct { get; set; }
- public string Name { get; set; }
- public string Manufacture { get; set; }
- public string ProductGroup { get; set; }
- public decimal Cost { get; set; }
- public string TypeOfProduct { get; set; }
- public int Bardcode { get; set; }
- public decimal Margin { get; set; }
- public int Quantity { get; set; }
- public decimal Discount { get; set; }
- public string Unit { get; set; }
- public Nullable<decimal> VAT { get; set; }
-
- public virtual ICollection<CashRegister> CashRegister { get; set; }
- public virtual ICollection<SupplyProduct> SupplyProduct { get; set; }
- }
- }
|