示例#1
0
 public CategoryController(IUserTestsService userTestsService, IUserService userService, ICategoriesService categoriesService, IMappingProvider mapper)
 {
     this.userTestsService  = userTestsService;
     this.userService       = userService;
     this.categoriesService = categoriesService;
     this.mapper            = mapper;
 }
示例#2
0
 public ResultsController(IMappingProvider mapper,
                          IUserTestsService userTestsService,
                          IUserTestAnswersService utaService,
                          ITestService testService)
 {
     this.mapper           = mapper;
     this.userTestsService = userTestsService;
     this.utaService       = utaService;
     this.testService      = testService;
 }
 public SolveController(IMappingProvider mapper,
                        IUserTestsService userTestsService,
                        ICategoriesService categoriesService,
                        ITestService testsService,
                        IUserService userService)
 {
     this.mapper            = mapper;
     this.userTestsService  = userTestsService;
     this.categoriesService = categoriesService;
     this.testsService      = testsService;
     this.userService       = userService;
 }
示例#4
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;
 }
示例#5
0
 public ResultsController(IMappingProvider mapper,
                          IUserTestsService userTestsService)
 {
     this.mapper           = mapper;
     this.userTestsService = userTestsService;
 }