Пример #1
0
 public StudentsController(
     ITeacherStudentsService teacherStudentServeice,
     ITeacherCoursesService teacherCourseService,
     UserManager <User> userManager,
     RoleManager <IdentityRole> roleManager)
 {
     this.teacherStudentServeice = teacherStudentServeice;
     this.teacherCourseService   = teacherCourseService;
     this.userManager            = userManager;
     this.roleManager            = roleManager;
 }
Пример #2
0
 public CoursesController(
     UserManager <User> userManager,
     IAdminUserService adminUserService,
     ITeacherCoursesService teacherCourseService,
     RoleManager <IdentityRole> roleManager)
 {
     this.teacherCourseService = teacherCourseService;
     this.roleManager          = roleManager;
     this.userManager          = userManager;
     this.adminUserService     = adminUserService;
 }
Пример #3
0
 public TeacherGroupController(ITeacherCoursesService teacherCoursesService)
 {
     _teacherCoursesService = teacherCoursesService;
 }
Пример #4
0
 public CoursesController(ITeacherCoursesService coursesService)
 {
     this.coursesService = coursesService;
 }
 public TeacherSubjectsController(ITeacherCoursesService teacherCoursesService)
 {
     _teacherCoursesService = teacherCoursesService;
 }