Пример #1
0
 public Match(Team team1, Team team2, int matchID, DateTime time)
     : this(team1, team2)
 {
     this.matchID = matchID;
     this.time = time;
 }
Пример #2
0
 public Match(Team team1, Team team2, int matchID, DateTime time, int team1Score, int team2Score)
     : this(team1, team2, matchID, time)
 {
     this.team1Score = team1Score;
     this.team2Score = team2Score;
 }
Пример #3
0
 public Match(Team team1, Team team2)
 {
     this.team1 = team1;
     this.team2 = team2;
 }