Beispiel #1
0
 public MessageHanderService(ICoinmarketcapService coinmarketcapService,
                             IOkexService okexService, IHuobiService huobiService)
 {
     _coinmarketcapService = coinmarketcapService;
     _okexService          = okexService;
     _huobiService         = huobiService;
 }
Beispiel #2
0
 public MessageHanderService(ICoinmarketcapService coinmarketcapService,
                             IOkexService okexService, IHuobiService huobiService, INewsService newsService, IPmtownService pmtownService)
 {
     _coinmarketcapService = coinmarketcapService;
     _okexService          = okexService;
     _huobiService         = huobiService;
     _newsService          = newsService;
     _pmtownService        = pmtownService;
 }
 public HomeController()
 {
     gdaxService     = new GdaxService();
     krakenService   = new KrakenService();
     exmoService     = new ExmoService();
     cexService      = new CexService();
     coinbaseService = new CoinbaseService();
     bitstampService = new BitstampService();
     biboxService    = new BiboxService();
     huobiService    = new HuobiService();
 }
Beispiel #4
0
 public MessageHanderService(ICoinmarketcapService coinmarketcapService,
                             IOkexService okexService, IHuobiService huobiService, INewsService newsService, IPmtownService pmtownService, IProblemService problemService, ILintCodeService lintCodeService)
 {
     _coinmarketcapService = coinmarketcapService;
     _okexService          = okexService;
     _huobiService         = huobiService;
     _newsService          = newsService;
     _pmtownService        = pmtownService;
     _problemService       = problemService;
     _lintCodeService      = lintCodeService;
 }
Beispiel #5
0
        public CoinNewsTimeJob(
            IMahuaApi mahuaApi,
            IScheduler scheduler,
            INewsService newsService,
            ICoinmarketcapService coinmarketcapService,
            IHuobiService huobiService
            )
        {
            _mahuaApi = mahuaApi;

            _scheduler = scheduler;

            _newsService          = newsService;
            _coinmarketcapService = coinmarketcapService;
            _huobiService         = huobiService;
        }