コード例 #1
0
 public HandicapConfigurationService(
     IHandicapConfigurationRepository configRepo,
     IMatchDayRepository matchDayRepository
     )
 {
     _configRepo         = configRepo;
     _matchDayRepository = matchDayRepository;
 }
コード例 #2
0
ファイル: MatchDayService.cs プロジェクト: grwag/Handicap
 public MatchDayService(IMatchDayRepository matchDayRepository,
                        IGameRepository gameRepository,
                        IHandicapConfigurationService configService,
                        IHandicapUpdateService handicapUpdateService,
                        IPlayerRepository playerRepository)
 {
     _matchDayRepository    = matchDayRepository;
     _gameRepository        = gameRepository;
     _configService         = configService;
     _handicapUpdateService = handicapUpdateService;
     _playerRepository      = playerRepository;
 }