コード例 #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 H2HWorldCupService(IH2HWorldCupRepository h2HWorldCupRepository)
 {
     this._h2HWorldCupRepository = h2HWorldCupRepository;
 }