public ExamQuestionController(EEVAContext context)
 {
     _questionManager             = new QuestionManager(context);
     _courseManager               = new CourseManager(context);
     _studentExamManager          = new StudentExamManager(context);
     _studentExamAnswerManager    = new StudentExamAnswerManager(context);
     _answerMultipleChoiceManager = new AnswerMultipleChoiceManager(context);
 }
Exemple #2
0
 public AnswerMultipleChoiceController(EEVAContext context)
 {
     _answerMultipleChoiceManager = new AnswerMultipleChoiceManager(context);
     _questionManager             = new QuestionManager(context);
 }