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

            _scheduler = scheduler;

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