Product.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код был создан из шаблона.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace OUP
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class Product
  14. {
  15. public Product()
  16. {
  17. this.CashRegister = new HashSet<CashRegister>();
  18. this.SupplyProduct = new HashSet<SupplyProduct>();
  19. }
  20. public int IdProduct { get; set; }
  21. public string Name { get; set; }
  22. public string Manufacture { get; set; }
  23. public string ProductGroup { get; set; }
  24. public decimal Cost { get; set; }
  25. public string TypeOfProduct { get; set; }
  26. public int Bardcode { get; set; }
  27. public decimal Margin { get; set; }
  28. public int Quantity { get; set; }
  29. public decimal Discount { get; set; }
  30. public string Unit { get; set; }
  31. public Nullable<decimal> VAT { get; set; }
  32. public virtual ICollection<CashRegister> CashRegister { get; set; }
  33. public virtual ICollection<SupplyProduct> SupplyProduct { get; set; }
  34. }
  35. }