Exemplo n.º 1
0
 public PaymentTransactionController(
     IPaymentTransactionsService paymentTransactionsService,
     IPersonalDataService personalDataService,
     ICountryComponent countryComponent)
 {
     _paymentTransactionsService = paymentTransactionsService;
     _personalDataService        = personalDataService;
     _countryComponent           = countryComponent;
 }
Exemplo n.º 2
0
 public PaymentUrlDataController(
     IPaymentUrlDataService paymentUrlDataService,
     IPaymentTransactionEventLogService paymentTransactionEventLogService,
     IPaymentTransactionsService paymentTransactionsService,
     ILog log,
     IAssetsService assetsService,
     IFeeCalculatorClient feeCalculatorClient,
     IPersonalDataService personalDataService,
     ICountryComponent countryComponent)
 {
     _paymentUrlDataService             = paymentUrlDataService;
     _paymentTransactionEventLogService = paymentTransactionEventLogService;
     _paymentTransactionsService        = paymentTransactionsService;
     _log                 = log;
     _assetsService       = assetsService;
     _feeCalculatorClient = feeCalculatorClient;
     _personalDataService = personalDataService;
     _countryComponent    = countryComponent;
 }