Exemplo n.º 1
0
 public ExamsController(
     IExamsService examsService,
     UserManager <ApplicationUser> userManager,
     IExamUsersService examUsersService)
 {
     this.examsService     = examsService;
     this.userManager      = userManager;
     this.examUsersService = examUsersService;
 }
Exemplo n.º 2
0
 public AnswerMultiSelectsController(
     IAnswerMultiSelectsService answerMultiSelectsService,
     UserManager <ApplicationUser> userManager,
     IExamUsersService examUsersService,
     IExamsService examsService)
 {
     this.answerMultiSelectsService = answerMultiSelectsService;
     this.userManager      = userManager;
     this.examUsersService = examUsersService;
     this.examsService     = examsService;
 }
 public QuestionsController(
     IQuestionsService questionsService,
     UserManager <ApplicationUser> userManager,
     IExamUsersService examUsersService,
     IAnswersSerrvice answersSerrvice,
     IExamsService examsService)
 {
     this.questionsService = questionsService;
     this.userManager      = userManager;
     this.examUsersService = examUsersService;
     this.answersSerrvice  = answersSerrvice;
     this.examsService     = examsService;
 }
Exemplo n.º 4
0
 public ExamUsersController(IUsersService usersService, IExamUsersService examUsersService)
 {
     this.usersService     = usersService;
     this.examUsersService = examUsersService;
 }