コード例 #1
0
 public OffchainTransactionController(ICachedTransactionService transactionService,
                                      IAssetService assetService,
                                      IOffchainNotificationsService offchainNotificationsService)
 {
     _assetService = assetService;
     _offchainNotificationsService = offchainNotificationsService;
 }
コード例 #2
0
 public SearchService(IAssetService assetProvider,
                      AppSettings baseSettings,
                      IOffchainNotificationsService offchainNotificationsService)
 {
     _assetProvider = assetProvider;
     _baseSettings  = baseSettings;
     _offchainNotificationsService = offchainNotificationsService;
 }
コード例 #3
0
 public AddressController(IAddressService addressProvider,
                          IAssetService assetService,
                          IBlockService blockService,
                          ICachedMainChainService mainChainService,
                          ICachedAddressService cachedAddressService,
                          IOffchainNotificationsService offchainNotificationsService)
 {
     _addressProvider              = addressProvider;
     _assetService                 = assetService;
     _blockService                 = blockService;
     _mainChainService             = mainChainService;
     _cachedAddressService         = cachedAddressService;
     _offchainNotificationsService = offchainNotificationsService;
 }
コード例 #4
0
 public OffchainGroupController(IAssetService assetService, IOffchainNotificationsService offchainNotificationsService)
 {
     _assetService = assetService;
     _offchainNotificationsService = offchainNotificationsService;
 }