Beispiel #1
0
 public Player(Team team, int number, string name, Position position, ShotHand shoots)
 {
     this.Team     = team;
     this.Number   = number;
     this.Name     = name;
     this.Position = position;
     this.Shoots   = shoots;
 }
Beispiel #2
0
 public Goalie(Team team, int number, string name, ShotHand shoots) : base(team, number, name, Position.Goalie, shoots)
 {
 }