Пример #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;
 }