public PanelController(
     TeacherProfileService teacherProfileService,
     PackageService packageService,
     EnrollmentService enrollmentService,
     StudentInfoService studentInfoService,
     ImageService imageService,
     AssignmentService assignmentService
     )
 {
     _imageService          = imageService;
     _teacherProfileService = teacherProfileService;
     _packageService        = packageService;
     _enrollmentService     = enrollmentService;
     _studentInfoService    = studentInfoService;
     _assignmentService     = assignmentService;
 }
 public UserManagersController(UserManagerService userService, ApplicationUserManager userManager, ApplicationRoleManager roleManager, EnrollmentService enrollmentService, ImageService imageService, StudentInfoService studentProfile, TeacherProfileService teacherService)
 {
     _userService = userService;
     UserManager  = userManager;
     //_classlevelService = classLevelService;
     RoleManager        = roleManager;
     _imageService      = imageService;
     _studentService    = studentProfile;
     _enrollmentService = enrollmentService;
     _teacherService    = teacherService;
 }
 public TeacherProfileController(TeacherProfileService teacherProfileService)
 {
     _teacherProfileService = teacherProfileService;
 }
Example #4
0
 public PackageController(UserManagerService userService, ApplicationUserManager userManager, ApplicationRoleManager roleManager, StudentInfoService studentProfile, PackageService packageService, TeacherProfileService teacherService, ImageService imageService)
 {
     _userService    = userService;
     UserManager     = userManager;
     _teacherService = teacherService;
     //_classlevelService = classLevelService;
     RoleManager     = roleManager;
     _packageService = packageService;
     _imageService   = imageService;
 }