Example #1
0
 public AccountController(
     IProfileService profileService,
     IGroupAdminService groupAdminService)
 {
     _profileService    = profileService;
     _groupAdminService = groupAdminService;
 }
 public StudentController(
     ApplicationUserManager userManager,
     IGroupAdminService groupAdminService)
 {
     _userManager       = userManager;
     _groupAdminService = groupAdminService;
 }
 public StudentController(
     IStudentAdminService studentAdminService,
     IGroupAdminService groupAdminService)
 {
     _studentAdminService = studentAdminService;
     _groupAdminService   = groupAdminService;
 }
Example #4
0
 public ResultController(
     IResultAdminService resultAdminService,
     IStudentAdminService studentAdminService,
     IGroupAdminService groupAdminService,
     IThemeAdminService themeAdminService)
 {
     _resultAdminService  = resultAdminService;
     _studentAdminService = studentAdminService;
     _groupAdminService   = groupAdminService;
     _themeAdminService   = themeAdminService;
 }
Example #5
0
 public AccountController(
     ApplicationUserManager userManager,
     ApplicationSignInManager signInManager,
     ApplicationRoleManager roleManager,
     IProfileService profileService,
     IGroupAdminService groupAdminService)
 {
     UserManager        = userManager;
     SignInManager      = signInManager;
     _profileService    = profileService;
     _groupAdminService = groupAdminService;
     _roleManager       = roleManager;
 }
Example #6
0
 public GroupController(IGroupAdminService groupAdminService)
 {
     _groupAdminService = groupAdminService;
 }