Пример #1
0
 public UserController(ILessonService lessonService, UserManager <AppUser> userManager, IStudentLessonService studentLesson, IQuestionsService questionsService, IExamService examService, IExamResultService examResultService)
 {
     _lessonService     = lessonService;
     _userManager       = userManager;
     _studentLesson     = studentLesson;
     _questionsSerice   = questionsService;
     _examService       = examService;
     _examResultService = examResultService;
 }
Пример #2
0
 public TakeExamController(IExamResultService examResultService, IOpenAnswerGivenByStutenService openAnswerGivenByStutenService,
                           IExamService examService, ISubjectService subjectService, ITestService testService, IQuestionService questionService)
 {
     this.subjectService  = subjectService;
     this.questionService = questionService;
     this.examService     = examService;
     this.openAnswerGivenByStutenService = openAnswerGivenByStutenService;
     this.examResultService = examResultService;
 }
Пример #3
0
 public ResultController(ExamResultService objExamResultService)
 {
     this.objExamResultService = objExamResultService;
 }
Пример #4
0
 public ExamResultController(IExamResultService service)
 {
     _service = service;
 }
Пример #5
0
 public CheckExamController(ISubjectService subjectService, IExamCheck examCheck, IExamResultService examResultService)
 {
     this.subjectService    = subjectService;
     this.examCheck         = examCheck;
     this.examResultService = examResultService;
 }