//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ 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(); this.Record = new HashSet(); } 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 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 { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection Record { get; set; } } }