public APIBankCardsCreditVouchers(BaseSettings baseSettings,
                                   ILog log,
                                   ICreditVouchersSecurity creditVouchersSecurity)
 {
     _creditVouchersSettings = baseSettings.PaymentSystems.CreditVouchers;
     _creditVouchersSecurity = creditVouchersSecurity;
 }
Example #2
0
 public PaymentUrlDataService(
     PaymentSettings paymentSettings,
     IOwnerTypeService ownerTypeService,
     ILegalEntityService legalEntityService,
     IIdentityRepository identityRepository)
 {
     _ownerTypeService       = ownerTypeService;
     _legalEntityService     = legalEntityService;
     _identityRepository     = identityRepository;
     _fxpaygateSettings      = paymentSettings.Fxpaygate;
     _creditVouchersSettings = paymentSettings.CreditVouchers;
 }
 public CreditVouchersSecurity(BaseSettings baseSettings)
 {
     _creditVouchersSettings = baseSettings.PaymentSystems.CreditVouchers;
 }
 public PaymentLimitsService(PaymentSettings paymentSettings)
 {
     _creditVouchersSettings = paymentSettings.CreditVouchers;
     _fxpaygateSettings      = paymentSettings.Fxpaygate;
 }