internal OAuthServicesContext(IOAuthUserService userService,
                               IOAuthClientStore clientStore,
                               IOAuthRefreshTokenStore refreshTokenStore,
                               IOAuthTokenService tokenService)
 {
     UserService       = userService;
     ClientStore       = clientStore;
     RefreshTokenStore = refreshTokenStore;
     TokenService      = tokenService;
 }
Ejemplo n.º 2
0
 public AuthorizationServerProvider(IOAuthClientStore clientStore)
 {
     _clientStore = clientStore;
 }