public ResolvesController(IResolvesService resolvesService, IReviewRecordsService reviewRecordsService,
                           INotesService notesService, ITermsService termsService,
                           IAttachmentsService attachmentsService, IOptions <AdminSettings> adminSettings, IMapper mapper)
 {
     _resolvesService      = resolvesService;
     _reviewRecordsService = reviewRecordsService;
     _notesService         = notesService;
     _termsService         = termsService;
     _attachmentsService   = attachmentsService;
     _adminSettings        = adminSettings.Value;
     _mapper = mapper;
 }
예제 #2
0
        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;
        }