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