tbBatchMaterial.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан по шаблону.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace Практическая__5
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class tbBatchMaterial
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  16. public tbBatchMaterial()
  17. {
  18. this.tbCompositionJewelry = new HashSet<tbCompositionJewelry>();
  19. }
  20. public int idBatch { get; set; }
  21. public int idMaterial { get; set; }
  22. public double price { get; set; }
  23. public Nullable<System.DateTime> dateTime { get; set; }
  24. public virtual tbMaterial tbMaterial { get; set; }
  25. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  26. public virtual ICollection<tbCompositionJewelry> tbCompositionJewelry { get; set; }
  27. }
  28. }