public TokenAuthenticationStateProvider(
     TokenStorage tokenStorage,
     HttpClient httpClient)
 {
     this.tokenStorage = tokenStorage;
     this.httpClient   = httpClient;
 }
Ejemplo n.º 2
0
 public AccountService(
     TokenStorage tokenStorage,
     HttpClient httpClient,
     TokenAuthenticationStateProvider authState)
 {
     this.tokenStorage = tokenStorage;
     this.httpClient   = httpClient;
     this.authState    = authState;
 }