public PayooPaymentGateway(
     IPayooCartService payooCartService,
     IOrderNumberGenerator orderNumberGenerator,
     IOrderRepository orderRepository,
     ICmsPaymentPropertyService cmsPaymentPropertyService)
 {
     _payooCartService           = payooCartService;
     _orderNumberGenerator       = orderNumberGenerator;
     _orderRepository            = orderRepository;
     _cmsPaymentPropertyService  = cmsPaymentPropertyService;
     _paymentMethodConfiguration = new PayooConfiguration(Settings);
 }
示例#2
0
 public PayooPaymentController(IOrderRepository orderRepository, ICmsPaymentPropertyService cmsPaymentPropertyService)
 {
     _orderRepository           = orderRepository;
     _cmsPaymentPropertyService = cmsPaymentPropertyService;
 }