Exemple #1
0
 public StudentController(UserManager <SapIdentityUser> userManager, IStudentsService studentsService, IPersonsService personsService, IDepartmentsService departmentsService, IDepartmentPersonsService departmentPersonsService, ICoursesService coursesService) : base(userManager, null, null)
 {
     _studentsService          = studentsService;
     _personsService           = personsService;
     _departmentsService       = departmentsService;
     _departmentPersonsService = departmentPersonsService;
     _coursesService           = coursesService;
 }
 public CourseRegistrationController(UserManager <SapIdentityUser> userManager, ICourseRegistrationService courseRegistrationService, IDepartmentPersonsService departmentPersonsService) : base(userManager, null, null)
 {
     _courseRegistrationService = courseRegistrationService;
     _departmentPersonsService  = departmentPersonsService;
 }