Exemple #1
0
 public PayPalOrderService(IWorkContext workContext,
                           PayPalExpressCheckoutPaymentSettings payPalExpressCheckoutPaymentSettings,
                           IPayPalCurrencyCodeParser payPalCurrencyCodeParser,
                           IPayPalCartItemService payPalCartItemService,
                           IShippingService shippingService,
                           IGenericAttributeService genericAttributeService,
                           IStoreContext storeContext,
                           ICheckoutAttributeParser checkoutAttributeParser)
 {
     _workContext = workContext;
     _payPalExpressCheckoutPaymentSettings = payPalExpressCheckoutPaymentSettings;
     _payPalCurrencyCodeParser             = payPalCurrencyCodeParser;
     _payPalCartItemService   = payPalCartItemService;
     _shippingService         = shippingService;
     _genericAttributeService = genericAttributeService;
     _storeContext            = storeContext;
     _checkoutAttributeParser = checkoutAttributeParser;
 }