Ejemplo n.º 1
0
 public MessageHanderService(ICoinmarketcapService coinmarketcapService,
                             IOkexService okexService, IHuobiService huobiService)
 {
     _coinmarketcapService = coinmarketcapService;
     _okexService          = okexService;
     _huobiService         = huobiService;
 }
Ejemplo n.º 2
0
 public MessageHanderService(ICoinmarketcapService coinmarketcapService,
                             IOkexService okexService, IHuobiService huobiService, INewsService newsService, IPmtownService pmtownService)
 {
     _coinmarketcapService = coinmarketcapService;
     _okexService          = okexService;
     _huobiService         = huobiService;
     _newsService          = newsService;
     _pmtownService        = pmtownService;
 }
Ejemplo n.º 3
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;
 }
Ejemplo n.º 4
0
        public CoinNewsTimeJob(
            IMahuaApi mahuaApi,
            IScheduler scheduler,
            INewsService newsService,
            ICoinmarketcapService coinmarketcapService,
            IHuobiService huobiService
            )
        {
            _mahuaApi = mahuaApi;

            _scheduler = scheduler;

            _newsService          = newsService;
            _coinmarketcapService = coinmarketcapService;
            _huobiService         = huobiService;
        }
Ejemplo n.º 5
0
 public CryptoController(ILogger <CryptoController> logger, ICoinmarketcapService coinmarketcap, IMemoryCache memoryCache)
 {
     this.logger          = logger;
     coinmarketcapService = coinmarketcap;
     this.memoryCache     = memoryCache;
 }