1234567891011121314151617181920212223242526272829303132333435363738 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace TeaTime
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Event
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Event()
- {
- this.ProgrammEvent = new HashSet<ProgrammEvent>();
- this.Record = new HashSet<Record>();
- }
-
- public int idEvent { get; set; }
- public System.DateTime date { get; set; }
- public string name { get; set; }
- public string theme { get; set; }
- public System.TimeSpan time { get; set; }
- public Nullable<int> idWorker { get; set; }
- public string description { get; set; }
-
- public virtual Worker Worker { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<ProgrammEvent> ProgrammEvent { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Record> Record { get; set; }
- }
- }
|