12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // Этот код создан по шаблону.
- //
- // Изменения, вносимые в этот файл вручную, могут привести к непредвиденной работе приложения.
- // Изменения, вносимые в этот файл вручную, будут перезаписаны при повторном создании кода.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace NBAManagment.Entities
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Player
- {
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
- public Player()
- {
- this.MatchupLogs = new HashSet<MatchupLogs>();
- this.PlayerInTeam = new HashSet<PlayerInTeam>();
- this.PlayerStatistic = new HashSet<PlayerStatistic>();
- }
- public int IdPlayer { get; set; }
- public string Surename { get; set; }
- public string Name { get; set; }
- public string Patronymic { get; set; }
- public Nullable<int> IdPosition { get; set; }
- public Nullable<System.DateTime> JoinYear { get; set; }
- public Nullable<int> IdGender { get; set; }
- public Nullable<decimal> Height { get; set; }
- public Nullable<decimal> Weight { get; set; }
- public Nullable<System.DateTime> DateOfBirth { get; set; }
- public string College { get; set; }
- public string Email { get; set; }
- public Nullable<int> IdCountry { get; set; }
- public Nullable<bool> IsRetiment { get; set; }
- public Nullable<System.DateTime> RetirmentTime { get; set; }
- public byte[] Image { get; set; }
- public virtual Country Country { get; set; }
- public virtual Gender Gender { get; set; }
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
- public virtual ICollection<MatchupLogs> MatchupLogs { get; set; }
- public virtual Position Position { 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; }
- }
- }
|