Ejemplo n.º 1
0
 public AppState(
     ILocalStorageService localStorage,
     ILocalisationHelper localisationHelper,
     NavigationManager uriHelper
     )
 {
     LocalStorage       = localStorage;
     LocalisationHelper = localisationHelper;
     UriHelper          = uriHelper;
     Task.Factory.StartNew(Initialise);
 }
Ejemplo n.º 2
0
 public AppState(IJSRuntime jSRuntime,
                 ILocalStorageService localStorage,
                 IComponentContext componentContext,
                 ILocalisationHelper localisationHelper,
                 IChatApi gitterApi)
 {
     JSRuntime          = jSRuntime;
     LocalStorage       = localStorage;
     ComponentContext   = componentContext;
     LocalisationHelper = localisationHelper;
     GitterApi          = gitterApi;
     //Task.Factory.StartNew(Initialise);
 }
Ejemplo n.º 3
0
 public AppState(
     ILocalStorageService localStorage,
     IComponentContext componentContext,
     ILocalisationHelper localisationHelper,
     IUriHelper uriHelper
     )
 {
     LocalStorage       = localStorage;
     ComponentContext   = componentContext;
     LocalisationHelper = localisationHelper;
     UriHelper          = uriHelper;
     Task.Factory.StartNew(Initialise);
 }