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