1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- 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<MatchupDetail>();
- this.MatchupLogs = new HashSet<MatchupLogs>();
- }
- public int IdMatchup { get; set; }
- public Nullable<int> IdSeason { get; set; }
- public Nullable<int> IdMatchupType { get; set; }
- public Nullable<int> IdTeamAway { get; set; }
- public Nullable<int> IdTeamHome { get; set; }
- public Nullable<System.DateTime> Starttime { get; set; }
- public Nullable<int> TeamAwayScore { get; set; }
- public Nullable<int> TeamHomeScore { get; set; }
- public string Location { get; set; }
- public Nullable<int> 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> MatchupDetail { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<MatchupLogs> MatchupLogs { get; set; }
- }
- }
|