コード例 #1
0
 public TezosHistoryService(ILogger <TezosHistoryService> logger, TezosMonitorClient tezosMonitorClient, IOptions <TezosConfig> tezosConfig, IPushHistoryService pushHistoryService)
 {
     _logger             = logger;
     _tezosMonitorClient = tezosMonitorClient.Client;
     _tezosConfig        = tezosConfig.Value;
     _pushHistoryService = pushHistoryService;
 }
コード例 #2
0
 public PushService(IPushHistoryService pushHistoryService,
                    IPushHistoryDetailService historyDetailService,
                    IPushFacadeService pushFacadeService)
     : base(pushHistoryService, historyDetailService)
 {
     _pushHistoryService   = pushHistoryService;
     _historyDetailService = historyDetailService;
     _pushFacadeService    = pushFacadeService;
 }
コード例 #3
0
 public MessageTextService(IUnitOfWork unitOfWork,
                           IArticleThumbsUpService articleThumbsUpService,
                           IPushService pushService,
                           IPushHistoryService pushHistoryService)
     : base("CAAdmin")
 {
     _pushService        = pushService;
     _pushHistoryService = pushHistoryService;
 }
コード例 #4
0
 public MessageService(IUnitOfWork unitOfWork,
                       IArticleThumbsUpService articleThumbsUpService, IPushService pushService, IPushHistoryService pushHistoryService, ICacheManager cacheManager)
     : base("CAAdmin")
 {
     _articleThumbsUpService = articleThumbsUpService;
     _pushService            = pushService;
     _pushHistoryService     = pushHistoryService;
     _cacheManager           = cacheManager;
 }
コード例 #5
0
 public BasePushService(IPushHistoryService pushHistoryService, IPushHistoryDetailService historyDetailService)
 {
     _pushHistoryService   = pushHistoryService;
     _historyDetailService = historyDetailService;
 }