示例#1
0
 public LTCSendRequestApiService(ApiServiceAppSettings appSettings, CoinsWalletDbContext context)
 {
     AppSettings  = appSettings;
     this.context = context;
 }
示例#2
0
 public WalletServiceImpl(CoinsWalletDbContext coinsWalletDbContext,
                          JsonRPCClient jsonRPCClient)
 {
     context   = coinsWalletDbContext;
     rpcClient = jsonRPCClient;
 }
示例#3
0
 public ZECReceiveQueryApiService(ApiServiceAppSettings appSettings, CoinsWalletDbContext context)
 {
     AppSettings  = appSettings;
     this.context = context;
 }
示例#4
0
 public SendNotifyServiceImpl(IConfiguration configuration, CoinsWalletDbContext context)
 {
     this.configuration = configuration;
     this.context       = context;
 }
示例#5
0
 public ReceiveNotifyServiceImpl(CoinsWalletDbContext context)
 {
     this.context = context;
 }