Esempio n. 1
0
 public CurrentUserStore(PlayblackLocalStorageService playblackLocalStorageService, HttpService httpService)
 {
     _httpService = httpService;
     PlayblackLocalStorageService = playblackLocalStorageService;
 }
Esempio n. 2
0
 public async Task SetToken(LoginResult state)
 {
     CurrentToken = state;
     await PlayblackLocalStorageService.SetToken(state);
 }
Esempio n. 3
0
 public UserManagerService(PlayblackLocalStorageService playblackLocalStorageService, NavigationManager navigationManager)
 {
     _playblackLocalStorageService = playblackLocalStorageService;
     _navigationManager            = navigationManager;
 }