Exemple #1
0
 public BTCSyncTransactionApiService(ApiServiceAppSettings appSettings, IWalletService walletService)
 {
     AppSettings   = appSettings;
     WalletService = walletService;
 }
Exemple #2
0
 public BTCNewAddressApiService(ApiServiceAppSettings appSettings, IWalletService walletService)
 {
     AppSettings   = appSettings;
     WalletService = walletService;
 }
Exemple #3
0
 public ETHReceiveNotifyApiService(ApiServiceAppSettings appSettings, IReceiveNotifyService receiveNotifyService)
 {
     AppSettings          = appSettings;
     ReceiveNotifyService = receiveNotifyService;
 }
Exemple #4
0
 public ZECSendNotifyApiService(ApiServiceAppSettings appSettings, ISendNotifyService sendNotifyService)
 {
     AppSettings       = appSettings;
     SendNotifyService = sendNotifyService;
 }
Exemple #5
0
 public BCHConfirmSendApiService(ApiServiceAppSettings appSettings, IWalletService walletService)
 {
     AppSettings   = appSettings;
     WalletService = walletService;
 }
Exemple #6
0
 public LTCReceiveQueryApiService(ApiServiceAppSettings appSettings, CoinsWalletDbContext context)
 {
     AppSettings  = appSettings;
     this.context = context;
 }
Exemple #7
0
 public DASHConfirmTransactionApiService(ApiServiceAppSettings appSettings, IWalletService walletService)
 {
     AppSettings   = appSettings;
     WalletService = walletService;
 }
Exemple #8
0
 public BTCSendRequestApiService(ApiServiceAppSettings appSettings, CoinsWalletDbContext context)
 {
     AppSettings  = appSettings;
     this.context = context;
 }
Exemple #9
0
 public LTCSyncBlockApiService(ApiServiceAppSettings appSettings, IWalletService walletService)
 {
     AppSettings   = appSettings;
     WalletService = walletService;
 }