Goods.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан по шаблону.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace Met_Fam
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class Goods
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  16. public Goods()
  17. {
  18. this.Buying_Goods = new HashSet<Buying_Goods>();
  19. this.Videos = new HashSet<Videos>();
  20. }
  21. public int ID_Goods { get; set; }
  22. public string Title_Goods { get; set; }
  23. public int ID_Type_Goods { get; set; }
  24. public int Price_Goods { get; set; }
  25. public string Picture { get; set; }
  26. public string Description { get; set; }
  27. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  28. public virtual ICollection<Buying_Goods> Buying_Goods { get; set; }
  29. public virtual Type_Goods Type_Goods { get; set; }
  30. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  31. public virtual ICollection<Videos> Videos { get; set; }
  32. }
  33. }