public CreateTestsController(IMappingProvider mapper, IQuestionService questionsService, ICreateTestService createTestService, UserManager <User> userManager, IUserService userService)
 {
     this.mapper            = mapper;
     this.questionsService  = questionsService;
     this.createTestService = createTestService;
     this.userManager       = userManager;
     this.userService       = userService;
 }
Пример #2
0
 public EditTestController(IMappingProvider mapper, ICreateTestService createTestService
                           , UserManager <User> userManager, IUserService userService
                           , IUserTestsService userTestsService
                           , ITestService testService, ICategoriesService categories
                           , IUserTestAnswersService utaService
                           )
 {
     this.mapper            = mapper;
     this.createTestService = createTestService;
     this.userManager       = userManager;
     this.userService       = userService;
     this.userTestsService  = userTestsService;
     this.testService       = testService;
     this.categories        = categories;
     this.utaService        = utaService;
 }