Product.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан по шаблону.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace Learn
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class Product
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  16. public Product()
  17. {
  18. this.ProductPhoto = new HashSet<ProductPhoto>();
  19. this.ProductSale = new HashSet<ProductSale>();
  20. this.Product1 = new HashSet<Product>();
  21. this.Product2 = new HashSet<Product>();
  22. }
  23. public int ID { get; set; }
  24. public string Title { get; set; }
  25. public decimal Cost { get; set; }
  26. public string Description { get; set; }
  27. public string MainImagePath { get; set; }
  28. public bool IsActive { get; set; }
  29. public Nullable<int> ManufacturerID { get; set; }
  30. public virtual Manufacturer Manufacturer { get; set; }
  31. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  32. public virtual ICollection<ProductPhoto> ProductPhoto { get; set; }
  33. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  34. public virtual ICollection<ProductSale> ProductSale { get; set; }
  35. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  36. public virtual ICollection<Product> Product1 { get; set; }
  37. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  38. public virtual ICollection<Product> Product2 { get; set; }
  39. }
  40. }