123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace Курсовой_проект_3._1
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Teams
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Teams()
- {
- this.Achievements = new HashSet<Achievements>();
- this.Matches = new HashSet<Matches>();
- this.Matches1 = new HashSet<Matches>();
- this.Matches2 = new HashSet<Matches>();
- this.TeamApps = new HashSet<TeamApps>();
- this.TeamsUsers = new HashSet<TeamsUsers>();
- }
-
- public int Id { get; set; }
- public string Name { get; set; }
- public System.DateTime FoundationDate { get; set; }
- public Nullable<System.DateTime> DissolationDate { get; set; }
- public string PhoneNumber { get; set; }
- public string Email { get; set; }
- public string About { get; set; }
- public string LogoPath { get; set; }
- public int FK_Creater_Id { get; set; }
- public int FK_Country_Id { get; set; }
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Achievements> Achievements { get; set; }
- public virtual Countries Countries { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Matches> Matches { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Matches> Matches1 { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Matches> Matches2 { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<TeamApps> TeamApps { get; set; }
- public virtual Users Users { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<TeamsUsers> TeamsUsers { get; set; }
- }
- }
|