示例#1
0
文件: Match.cs 项目: Penkov/OOP
 public Match(Team homeTeam, Team awayTeam, Score score, int id)
 {
     this.HomeTeam = homeTeam;
     this.AwayTeam = awayTeam;
     this.Score = score;
     this.Id = id;
 }
示例#2
0
 private static void AddMatch(Team teamFirst, Team teamSecond, Score score, int id)
 {
 }