Example #1
0
 protected UiServiceBase(TokenStore tokenStore, IRestServiceUriFactory restServiceUriFactory,
                         SynchronizationContext synchronizationContext = null)
 {
     TokenStore             = tokenStore;
     SynchronizationContext = synchronizationContext;
     RestClient             = new RestClient(restServiceUriFactory.Get());
 }
Example #2
0
 public TimeWarpService(TokenStore tokenStore, IRestServiceUriFactory restServiceUriFactory)
     : base(tokenStore, restServiceUriFactory)
 {
 }
Example #3
0
 public AuthenticationService(TokenStore tokenStore, IRestServiceUriFactory restServiceUriFactory)
     : base(tokenStore, restServiceUriFactory)
 {
 }