123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace NBAManagment.Entities
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Team
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Team()
- {
- this.Matchup = new HashSet<Matchup>();
- this.Matchup1 = new HashSet<Matchup>();
- this.MatchupLogs = new HashSet<MatchupLogs>();
- this.PlayerInTeam = new HashSet<PlayerInTeam>();
- this.PlayerStatistic = new HashSet<PlayerStatistic>();
- this.PostSeason = new HashSet<PostSeason>();
- }
- public int IdTeam { get; set; }
- public string TeamName { get; set; }
- public Nullable<int> IdDivision { get; set; }
- public string Couch { get; set; }
- public string Abbr { get; set; }
- public string Stadium { get; set; }
- public byte[] Logo { get; set; }
- public virtual Division Division { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Matchup> Matchup { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<Matchup> Matchup1 { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<MatchupLogs> MatchupLogs { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<PlayerInTeam> PlayerInTeam { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<PlayerStatistic> PlayerStatistic { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<PostSeason> PostSeason { get; set; }
- }
- }
|