public LocalLoginService(ILocalAuthenticationStateProvider localAuthenticationStateProvider, ILocalStorageManagerService localStorageManagerService, ITimeService timeService, StaticStateService staticStateService)
 {
     _localAuthenticationStateProvider = localAuthenticationStateProvider;
     _localStorageManagerService       = localStorageManagerService;
     _timeService        = timeService;
     _staticStateService = staticStateService;
 }
Example #2
0
 public RequestSender(IHttpService client, ILocalAuthenticationStateProvider localAuthenticationStateProvider, IToastService toastService, TextService textService, IFixingService fixingService, ILanguageService languageService)
 {
     _client = client;
     _localAuthenticationStateProvider = localAuthenticationStateProvider;
     _toastService    = toastService;
     _textService     = textService;
     _fixingService   = fixingService;
     _languageService = languageService;
 }