public CachedMainChainService(ICacheManager cacheManager,
                               IBlobStorage blobStorage,
                               IMainChainService mainChainService, AppSettings appSettings)
 {
     _cacheManager     = cacheManager;
     _blobStorage      = blobStorage;
     _mainChainService = mainChainService;
     _appSettings      = appSettings;
 }
예제 #2
0
 public AssetCoinholderIndexesCommandsQueueConsumer(ILog log,
                                                    IAssetCoinholdersIndexRepository assetCoinholdersIndexRepository,
                                                    IAssetBalanceChangesRepository balanceChangesRepository,
                                                    IAssetService assetService,
                                                    ITransactionService transactionService,
                                                    IMainChainService mainChainService,
                                                    IConsole console)
 {
     _log = log;
     _assetCoinholdersIndexRepository = assetCoinholdersIndexRepository;
     _balanceChangesRepository        = balanceChangesRepository;
     _assetService       = assetService;
     _transactionService = transactionService;
     _mainChainService   = mainChainService;
     _console            = console;
 }