internal OAuthServicesContext(IOAuthUserService userService,
                               IOAuthClientStore clientStore,
                               IOAuthRefreshTokenStore refreshTokenStore,
                               IOAuthTokenService tokenService)
 {
     UserService       = userService;
     ClientStore       = clientStore;
     RefreshTokenStore = refreshTokenStore;
     TokenService      = tokenService;
 }
Exemplo n.º 2
0
 public RefreshTokenProvider(IOAuthRefreshTokenStore refrshTokenStore)
 {
     _refrshTokenStore = refrshTokenStore;
 }