Exemplo n.º 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;
 }
 public StudentLessonController(IStudentLessonService studentLessonService) : base(studentLessonService)
 {
     this.studentLessonService = studentLessonService;
 }