Example #1
0
 public TeacherController(
     IStudentAdminService studentAdminService,
     IProfileSuperAdminService profileSuperAdminService)
 {
     _studentAdminService      = studentAdminService;
     _profileSuperAdminService = profileSuperAdminService;
 }
 public SubjectController(
     ISubjectAdminService subjectAdminService,
     IProfileSuperAdminService profileSuperAdminService)
 {
     _subjectAdminService      = subjectAdminService;
     _profileSuperAdminService = profileSuperAdminService;
 }
Example #3
0
 public ProfileController(
     ApplicationUserManager userManager,
     ApplicationSignInManager signInManager,
     ApplicationRoleManager roleManager,
     IProfileSuperAdminService profileSuperAdminService)
 {
     UserManager               = userManager;
     SignInManager             = signInManager;
     _profileSuperAdminService = profileSuperAdminService;
     RoleManager               = roleManager;
 }
Example #4
0
 public SubjectAdminService(IUnitOfWork unitOfWork, IProfileSuperAdminService profileSuperAdminService) : base(unitOfWork)
 {
     _profileSuperAdminService = profileSuperAdminService;
 }
Example #5
0
 public ProfileController(IProfileSuperAdminService profileSuperAdminService)
 {
     _profileSuperAdminService = profileSuperAdminService;
 }