public DashboardController( IParentServices parentServices, IStudentsServices studentsServices, IExamsServices examsServices, IAtendacesServices atendacesServices, UserManager <ApplicationUser> userManager) { this.parentServices = parentServices; this.studentsServices = studentsServices; this.examsServices = examsServices; this.atendacesServices = atendacesServices; this.userManager = userManager; }
public ExamsController( ApplicationDbContext context, IExamsServices examsServices, ITeacherServises teacherServises, IStudentsServices studentsServices, UserManager <ApplicationUser> userManager, RoleManager <ApplicationRole> roleManager) { _context = context; this.examsServices = examsServices; this.teacherServises = teacherServises; this.studentsServices = studentsServices; this.userManager = userManager; this.roleManager = roleManager; }
public StudentsController(IExamsServices examsServices, ICoursesServices courseServices, IStudentsServices studentsServices) { this.examsServices = examsServices; this.courseServices = courseServices; this.studentsServices = studentsServices; }