Пример #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;
 }
 public StudentsController(ITeacherStudentsService teacherStudentsService)
 {
     this.teacherStudentsService = teacherStudentsService;
 }