1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace Learn
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Product
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Product()
- {
- this.ProductPhoto = new HashSet<ProductPhoto>();
- this.ProductSale = new HashSet<ProductSale>();
- this.Product1 = new HashSet<Product>();
- this.Product2 = new HashSet<Product>();
- }
-
- public int ID { get; set; }
- public string Title { get; set; }
- public decimal Cost { get; set; }
- public string Description { get; set; }
- public string MainImagePath { get; set; }
- public bool IsActive { get; set; }
- public Nullable<int> ManufacturerID { get; set; }
-
- public virtual Manufacturer Manufacturer { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<ProductPhoto> ProductPhoto { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<ProductSale> ProductSale { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Product> Product1 { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Product> Product2 { get; set; }
- }
- }
|