Example #1
0
 public LoggedInController(IMapper mapper, ICriteriaComparisonService criteriaComparisonService, IAlternativeComparisonService alternativeComparisonService, IChoiceService choiceService)
 {
     _mapper        = mapper;
     _choiceService = choiceService;
     _alternativeComparisonService = alternativeComparisonService;
     _criteriaComparisonService    = criteriaComparisonService;
 }
Example #2
0
 public QuestionService(IQuizRepository quizRepository, IQuestionRepository questionRepository, IMemoryCache cache, IMapper mapper, IChoiceService choiceService)
 {
     _quizRepository     = quizRepository;
     _questionRepository = questionRepository;
     _cache         = cache;
     _mapper        = mapper;
     _choiceService = choiceService;
 }
Example #3
0
 public ChoiceController(
     IMapper mapper,
     ICalculateAHPScores AHPcalculate,
     IChoiceService choiceService)
 {
     _mapper        = mapper;
     _AHPcalculate  = AHPcalculate;
     _choiceService = choiceService;
 }
Example #4
0
 public ChoicesController(IChoiceService choiceService)
 {
     _choiceService = choiceService;
 }
Example #5
0
 public AppState(IChoiceService choiceService)
 {
     _choiceService = choiceService;
 }