public BTCSyncTransactionApiService(ApiServiceAppSettings appSettings, IWalletService walletService) { AppSettings = appSettings; WalletService = walletService; }
public BTCNewAddressApiService(ApiServiceAppSettings appSettings, IWalletService walletService) { AppSettings = appSettings; WalletService = walletService; }
public ETHReceiveNotifyApiService(ApiServiceAppSettings appSettings, IReceiveNotifyService receiveNotifyService) { AppSettings = appSettings; ReceiveNotifyService = receiveNotifyService; }
public ZECSendNotifyApiService(ApiServiceAppSettings appSettings, ISendNotifyService sendNotifyService) { AppSettings = appSettings; SendNotifyService = sendNotifyService; }
public BCHConfirmSendApiService(ApiServiceAppSettings appSettings, IWalletService walletService) { AppSettings = appSettings; WalletService = walletService; }
public LTCReceiveQueryApiService(ApiServiceAppSettings appSettings, CoinsWalletDbContext context) { AppSettings = appSettings; this.context = context; }
public DASHConfirmTransactionApiService(ApiServiceAppSettings appSettings, IWalletService walletService) { AppSettings = appSettings; WalletService = walletService; }
public BTCSendRequestApiService(ApiServiceAppSettings appSettings, CoinsWalletDbContext context) { AppSettings = appSettings; this.context = context; }
public LTCSyncBlockApiService(ApiServiceAppSettings appSettings, IWalletService walletService) { AppSettings = appSettings; WalletService = walletService; }