示例#1
0
 public AnalysisController(IQuestionsService questionsService, IRecruitsService recruitsService,
                           IOptions <RootSubjectSettings> rootSubjectSettings, ISubjectsService subjectsService, ITermsService termsService, IMapper mapper)
 {
     _questionsService    = questionsService;
     _recruitsService     = recruitsService;
     _subjectsService     = subjectsService;
     _termsService        = termsService;
     _rootSubjectSettings = rootSubjectSettings.Value;
     _mapper = mapper;
 }
 public SettingsController(IOptions <RootSubjectSettings> rootSubjectSettings, IDataService dataService, IRecruitsService recruitsService,
                           ISubjectsService subjectsService, ITermsService termsService, IMapper mapper)
 {
     _dataService         = dataService;
     _recruitsService     = recruitsService;
     _subjectsService     = subjectsService;
     _termsService        = termsService;
     _rootSubjectSettings = rootSubjectSettings.Value;
     _mapper = mapper;
 }
        public QuestionsController(IQuestionsService questionsService, IRecruitsService recruitsService, IAttachmentsService attachmentsService,
                                   ISubjectsService subjectsService, ITermsService termsService, IMapper mapper)
        {
            _questionsService   = questionsService;
            _recruitsService    = recruitsService;
            _attachmentsService = attachmentsService;
            _subjectsService    = subjectsService;
            _termsService       = termsService;

            _mapper = mapper;
        }
示例#4
0
        public DataController(IOptions <RootSubjectSettings> rootSubjectSettings, IOptions <AdminSettings> adminSettings,
                              IDataService dataService, ISubjectsService subjectsService, ITermsService termsService, INotesService notesService,
                              IRecruitsService recruitsService, IQuestionsService questionsService, IAttachmentsService attachmentsService, IMapper mapper)
        {
            _adminSettings       = adminSettings.Value;
            _rootSubjectSettings = rootSubjectSettings.Value;
            _subjectsService     = subjectsService;
            _termsService        = termsService;
            _notesService        = notesService;
            _recruitsService     = recruitsService;
            _questionsService    = questionsService;
            _attachmentsService  = attachmentsService;

            _dataService = dataService;

            _mapper = mapper;
        }
        public ExamsController(UserManager <User> userManager, IDataService dataService,
                               IAttachmentsService attachmentsService, IQuestionsService questionsService, IResolvesService resolvesService,
                               IExamsService examsService, ISubjectsService subjectsService, IRecruitsService recruitsService,
                               IMapper mapper)
        {
            _userManager = userManager;

            _dataService = dataService;

            _questionsService   = questionsService;
            _resolvesService    = resolvesService;
            _attachmentsService = attachmentsService;
            _examsService       = examsService;
            _subjectsService    = subjectsService;
            _recruitsService    = recruitsService;

            _mapper = mapper;
        }
 public RecruitsController(IRecruitsService recruitsService, ISubjectsService subjectsService, IMapper mapper)
 {
     _mapper          = mapper;
     _recruitsService = recruitsService;
     _subjectsService = subjectsService;
 }