public Match(Team homeTeam, Team awayTeam, Score score, int id) { this.HomeTeam = homeTeam; this.AwayTeam = awayTeam; this.Score = score; this.Id = id; }
private static void AddMatch(Team teamFirst, Team teamSecond, Score score, int id) { }