/*Section="Constructor"*/ public QuestionChoiceController( ILoggerFactory loggerFactory, IQuestionChoiceService questionChoiceService, IGameQuestionService gameQuestionService ) : base(loggerFactory, questionChoiceService) { _gameQuestionService = gameQuestionService; }
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; }