Beispiel #1
0
 public LeagueTableProcessor(string tournamentTitle)
 {
     TournamentTitle = tournamentTitle;
     _pointSystem    = new FootballPointSystem();
 }
Beispiel #2
0
 public LeagueTableProcessor(string tournamentTitle, ISportPointSystem pointSystem)
 {
     TournamentTitle = tournamentTitle;
     _pointSystem    = pointSystem;
 }
 public LeagueTableProcessorTests()
 {
     _pointSystem = new FootballPointSystem();
 }