public WalletService(IWalletRepository walletRepository, BitcoindService bitcoindService, ILogger <WalletService> logger) { _walletRepository = walletRepository; _bitcoindService = bitcoindService; _logger = logger; }
public TransactionService(BitcoindService bitcoindService, WalletService walletService, IInputTransactionsRepository inputTransactionsRepository, IOutputTransactionsRepository outputTransactionsRepository, ServiceConfiguration serviceConfiguration) { _bitcoindService = bitcoindService; _walletService = walletService; _inputTransactionsRepository = inputTransactionsRepository; _outputTransactionsRepository = outputTransactionsRepository; _serviceConfiguration = serviceConfiguration; }