123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
- 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<OrderProduct>();
- }
-
- 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<byte> ProductDiscountAmount { get; set; }
- public int ProductQuantityInStock { get; set; }
- public string ProductUnit { get; set; }
- public Nullable<int> ProductVendor { get; set; }
- public Nullable<double> 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> OrderProduct { get; set; }
- public virtual ProductVendor ProductVendor1 { get; set; }
- public virtual ProductCategory ProductCategory1 { get; set; }
- }
- }
|