Пример #1
0
 public RankingService(IRankingRepository rankingRepository,
                       ITeamRepository teamRepository,
                       ITournamentRepository tournamentRepository,
                       ITeamStatRepository teamStatRepository,
                       ITeamStatWorldCupRepository teamStatWorldCupRepository,
                       IH2HRepository h2hRepository,
                       IH2HWorldCupRepository h2hWorldCupRepository,
                       IMatchRepository matchRepository,
                       IGoalscorerRepository goalscorerRepository,
                       IPlayerRepository playerRepository)
 {
     this._rankingRepository          = rankingRepository;
     this._teamRepository             = teamRepository;
     this._tournamentRepository       = tournamentRepository;
     this._teamStatRepository         = teamStatRepository;
     this._teamStatWorldCupRepository = teamStatWorldCupRepository;
     this._h2hRepository         = h2hRepository;
     this._h2hWorldCupRepository = h2hWorldCupRepository;
     this._matchRepository       = matchRepository;
     this._goalscorerRepository  = goalscorerRepository;
     this._playerRepository      = playerRepository;
 }
Пример #2
0
 public H2HService(IH2HRepository h2HRepository)
 {
     this._h2HRepository = h2HRepository;
 }