예제 #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
파일: LeagueManager.cs 프로젝트: Penkov/OOP
 private static void AddMatch(Team teamFirst, Team teamSecond, Score score, int id)
 {
 }