Beispiel #1
0
 protected BaseController(PayServiceGenAddressSettings settings)
 {
     Settings = settings;
 }
 public GenerateController(PayServiceGenAddressSettings settings, IMerchantWalletRepository merchantWalletRepository, IBitcoinApi bitcoinApi) : base(settings)
 {
     _merchantWalletRepository = merchantWalletRepository;
     _bitcoinApi = bitcoinApi;
 }
Beispiel #3
0
 public WalletController(PayServiceGenAddressSettings settings, IMerchantWalletRepository merchantWalletRepository, IMerchantWalletHistoryRepository merchantWalletHistoryRepository) : base(settings)
 {
     _merchantWalletRepository        = merchantWalletRepository;
     _merchantWalletHistoryRepository = merchantWalletHistoryRepository;
 }