//------------------------------------------------------------------------------ // // Этот код создан по шаблону. // // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения. // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода. // //------------------------------------------------------------------------------ namespace NBAManagment.Entities { using System; using System.Collections.Generic; public partial class Matchup { [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public Matchup() { this.MatchupDetail = new HashSet(); this.MatchupLogs = new HashSet(); } public int IdMatchup { get; set; } public Nullable IdSeason { get; set; } public Nullable IdMatchupType { get; set; } public Nullable IdTeamAway { get; set; } public Nullable IdTeamHome { get; set; } public Nullable Starttime { get; set; } public Nullable TeamAwayScore { get; set; } public Nullable TeamHomeScore { get; set; } public string Location { get; set; } public Nullable IdStatus { get; set; } public virtual MatchupType MatchupType { get; set; } public virtual Season Season { get; set; } public virtual Status Status { get; set; } public virtual Team Team { get; set; } public virtual Team Team1 { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection MatchupDetail { get; set; } [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection MatchupLogs { get; set; } } }