public HomeController(
     UserManager <ApplicationUser> userManager,
     IParentServices parentServices,
     IStudentsServices studentsServices)
 {
     this.userManager      = userManager;
     this.parentServices   = parentServices;
     this.studentsServices = studentsServices;
 }
Exemple #2
0
 public ParentsController(
     IParentServices parentServices,
     IStudentsServices studentsServices,
     UserManager <ApplicationUser> userManager,
     RoleManager <ApplicationRole> roleManager)
 {
     this.parentServices   = parentServices;
     this.studentsServices = studentsServices;
     this.userManager      = userManager;
     this.roleManager      = roleManager;
 }
 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;
 }
Exemple #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;
 }