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