Ejemplo n.º 1
0
        public client(string email, string password)
        {
            var apiWebClient = new ApiWebClient(Helper.ApiURLBase);

            authenticator = new Authentication.Authentication(apiWebClient, email, password);
            Markets       = new Markets(apiWebClient);
        }
Ejemplo n.º 2
0
 public MainPresenter(ILogger <MainPresenter> logger,
                      ISqlLiteRepository repository,
                      IBittrexApi bittrexApi,
                      ICryptoWatchApi cryptoWatchApi,
                      IMarkets markets,
                      IOhlcProcessor processor)
 {
     _logger         = logger;
     _repository     = repository;
     _bittrexApi     = bittrexApi;
     _cryptoWatchApi = cryptoWatchApi;
     _markets        = markets;
     _processor      = processor;
 }