123456789101112131415161718192021222324252627282930313233343536 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace kursach_2._0
- {
- using System;
- using System.Collections.Generic;
-
- public partial class products
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public products()
- {
- this.cards = new HashSet<cards>();
- }
-
- public int id_product { get; set; }
- public Nullable<int> id_distributor { get; set; }
- public string product_name { get; set; }
- public string product_type { get; set; }
- public System.DateTime production_date { get; set; }
- public string warranty { get; set; }
- public Nullable<decimal> wholesale_price { get; set; }
- public Nullable<decimal> retail_price { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<cards> cards { get; set; }
- public virtual distributors distributors { get; set; }
- }
- }
|