public Match(Team team1, Team team2, int matchID, DateTime time) : this(team1, team2) { this.matchID = matchID; this.time = time; }
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; }
public Match(Team team1, Team team2) { this.team1 = team1; this.team2 = team2; }