예제 #1
0
 public QuestionSuggestionController(
     IQuestionSuggestionService questionSuggestionService,
     IQuizService quizService,
     IMapper mapper,
     IHubContext <NotificationHub> notificationHubContext)
 {
     this.questionSuggestionService = questionSuggestionService;
     this.quizService            = quizService;
     this.mapper                 = mapper;
     this.notificationHubContext = notificationHubContext;
 }
예제 #2
0
 public QuestionSuggestionController(IQuestionSuggestionService questionSuggestionService, IQuizService quizService, IMapper mapper)
 {
     this.questionSuggestionService = questionSuggestionService;
     this.quizService = quizService;
     this.mapper      = mapper;
 }