public AdunisWebHandler(IDevice device, IOAuthUtils oAuth, IHttpClientConfiguration httpClientConfiguration, IServiceApi serviceApi)
 {
     this.device = device;
     this.oAuth  = oAuth;
     this.httpClientConfiguration = httpClientConfiguration;
     this.serviceApi = serviceApi;
 }
예제 #2
0
 public FilerWebHandler(IDevice device, IAccountService account, IOAuthUtils oAuth, IHttpClientConfiguration httpClientConfiguration, IServiceApi serviceApi)
 {
     this.device  = device;
     this.account = account;
     this.oAuth   = oAuth;
     this.httpClientConfiguration = httpClientConfiguration;
     this.serviceApi = serviceApi;
 }
예제 #3
0
 public AccountViewModel(
     IMvxNavigationService navigationService,
     IAccountService account,
     IIOCacheService cache,
     IAdunisRepository adunisRepository,
     IAccountBalanceRepository accountBalanceRepository,
     IOAuthUtils oAuth,
     IUserInteractionService userInteraction)
 {
     this.NavigationService        = navigationService;
     this.account                  = account;
     this.cache                    = cache;
     this.adunisRepository         = adunisRepository;
     this.accountBalanceRepository = accountBalanceRepository;
     this.oAuth                    = oAuth;
     this.userInteraction          = userInteraction;
 }
 public DummyFilerWebHandler(IDevice device, IAccountService account, IOAuthUtils oAuth, IHttpClientConfiguration httpClientConfiguration, IServiceApi serviceApi)
     : base(device, account, oAuth, httpClientConfiguration, serviceApi)
 {
 }
예제 #5
0
 public DummyAccountBalanceWebHandler(IDevice device, IOAuthUtils oAuth, IHttpClientConfiguration httpClientConfiguration, IServiceApi serviceApi)
     : base(device, oAuth, httpClientConfiguration, serviceApi)
 {
 }