public TopScorersAppService(IMatchPlayerChampionshipRepository matchPlayerChampionshipsRepository)
 {
     _matchPlayerChampionshipsRepository = matchPlayerChampionshipsRepository;
 }
Exemple #2
0
 public SuspendedPlayersAppService(IMatchPlayerChampionshipRepository matchPlayerChampionshipsRepository,
                                   IChampionshipRepository championshipRepository)
 {
     _matchPlayerChampionshipsRepository = matchPlayerChampionshipsRepository;
     _championshipRepository             = championshipRepository;
 }