コード例 #1
0
 /*Section="Constructor"*/
 public QuestionChoiceController(
     ILoggerFactory loggerFactory,
     IQuestionChoiceService questionChoiceService,
     IGameQuestionService gameQuestionService
     )
     : base(loggerFactory, questionChoiceService)
 {
     _gameQuestionService = gameQuestionService;
 }
コード例 #2
0
ファイル: GameInfoService.cs プロジェクト: qswcom/Trivia
 public GameInfoService(IGameInfoRepository gameInfoRepository, IMessageService messageService,
                        IGameQuestionService gameQuestionService, IGameTimerService gameTimerService,
                        IGameStateService gameStateService)
 {
     this.gameInfoRepository  = gameInfoRepository;
     this.messageService      = messageService;
     this.gameQuestionService = gameQuestionService;
     this.gameTimerService    = gameTimerService;
     this.gameStateService    = gameStateService;
 }