Event.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // Этот код создан по шаблону.
  4. //
  5. // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
  6. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace TeaTime
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class Event
  14. {
  15. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
  16. public Event()
  17. {
  18. this.ProgrammEvent = new HashSet<ProgrammEvent>();
  19. this.Record = new HashSet<Record>();
  20. }
  21. public int idEvent { get; set; }
  22. public System.DateTime date { get; set; }
  23. public string name { get; set; }
  24. public string theme { get; set; }
  25. public System.TimeSpan time { get; set; }
  26. public Nullable<int> idWorker { get; set; }
  27. public string description { get; set; }
  28. public virtual Worker Worker { get; set; }
  29. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  30. public virtual ICollection<ProgrammEvent> ProgrammEvent { get; set; }
  31. [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
  32. public virtual ICollection<Record> Record { get; set; }
  33. }
  34. }