예제 #1
0
 public AccessController(
     IOpenIdApplicationManager applicationManager,
     IOpenIdAuthorizationManager authorizationManager,
     IOpenIdScopeManager scopeManager,
     ShellSettings shellSettings)
 {
     _applicationManager   = applicationManager;
     _authorizationManager = authorizationManager;
     _scopeManager         = scopeManager;
     _shellSettings        = shellSettings;
 }
예제 #2
0
 public AccessController(
     IOpenIdApplicationManager applicationManager,
     IOpenIdAuthorizationManager authorizationManager,
     IStringLocalizer <AccessController> localizer,
     IOpenIdScopeManager scopeManager,
     ShellSettings shellSettings,
     IOpenIdServerService serverService)
 {
     S = localizer;
     _applicationManager   = applicationManager;
     _authorizationManager = authorizationManager;
     _scopeManager         = scopeManager;
     _shellSettings        = shellSettings;
 }
예제 #3
0
 public AccessController(
     IOpenIdApplicationManager applicationManager,
     IOpenIdAuthorizationManager authorizationManager,
     IOptions <IdentityOptions> identityOptions,
     IStringLocalizer <AccessController> localizer,
     IOpenIdScopeManager scopeManager,
     ShellSettings shellSettings,
     IOpenIdServerService serverService,
     RoleManager <IRole> roleManager,
     SignInManager <IUser> signInManager,
     UserManager <IUser> userManager)
 {
     T = localizer;
     _applicationManager   = applicationManager;
     _authorizationManager = authorizationManager;
     _scopeManager         = scopeManager;
     _shellSettings        = shellSettings;
     _identityOptions      = identityOptions;
     _signInManager        = signInManager;
     _userManager          = userManager;
     _roleManager          = roleManager;
 }