public DashboardController(
     ICoursesServices coursesServices,
     ITeacherServises teacherServises,
     UserManager <ApplicationUser> userManager,
     RoleManager <ApplicationRole> roleManager)
 {
     this.coursesServices = coursesServices;
     this.teacherServises = teacherServises;
     this.userManager     = userManager;
     this.roleManager     = roleManager;
 }
예제 #2
0
 public HomeController(IUnitOfWork unitOfWork,
                       ICoursesServices coursesServices,
                       IStudentServices studentsServices,
                       IStudentCoursesServices studentCoursesServices,
                       IMapper mapper)
 {
     _unitOfWork     = unitOfWork;
     _studentCourses = studentCoursesServices;
     _courses        = coursesServices;
     _students       = studentsServices;
     _mapper         = mapper;
 }
예제 #3
0
 public DashboardController(
     IParentServices parentServices,
     IStudentsServices studentsServices,
     IExamsServices examsServices,
     IAtendacesServices atendacesServices,
     ICoursesServices coursesServices,
     UserManager <ApplicationUser> userManager)
 {
     this.parentServices    = parentServices;
     this.studentsServices  = studentsServices;
     this.examsServices     = examsServices;
     this.atendacesServices = atendacesServices;
     this.coursesServices   = coursesServices;
     this.userManager       = userManager;
 }
예제 #4
0
 public DashboardController(
     ITeacherServises teacherServises,
     ICoursesServices coursesServices,
     IParentServices parentServices,
     IStudentsServices studentsServices,
     UserManager <ApplicationUser> userManager,
     RoleManager <ApplicationRole> roleManager)
 {
     this.teacherServises  = teacherServises;
     this.coursesServices  = coursesServices;
     this.parentServices   = parentServices;
     this.studentsServices = studentsServices;
     this.userManager      = userManager;
     this.roleManager      = roleManager;
 }
예제 #5
0
 public CoursesController(ICoursesServices gradesServices, ITeacherServises teacherServises)
 {
     this.coursesServices = gradesServices;
     this.teacherServises = teacherServises;
 }
 public CoursesController(ICoursesServices coursesServices, IUserCoursesServices userCoursesServices)
 {
     this.coursesServices = coursesServices;
     this.userCoursesServices = userCoursesServices;
 }
 public StudentsController(IExamsServices examsServices, ICoursesServices courseServices, IStudentsServices studentsServices)
 {
     this.examsServices    = examsServices;
     this.courseServices   = courseServices;
     this.studentsServices = studentsServices;
 }