public AddressesController(
            IOrderService orderService,
            IPosServiceIntegration posServiceIntegration,
            IPaymentService paymentService,
            IShoppingCart shoppingCart,
            IOrchardServices orchardServices,
            ICurrencyProvider currencyProvider,
            INwazetCommunicationService nwazetCommunicationService,
            IWorkContextAccessor workContextAccessor,
            IShapeFactory shapeFactory,
            ITransactionManager transactionManager,
            IContentManager contentManager,
            INotifier notifier,
            IProductPriceService productPriceService)
        {
            _orderService               = orderService;
            _posServiceIntegration      = posServiceIntegration;
            _paymentService             = paymentService;
            _shoppingCart               = shoppingCart;
            _orchardServices            = orchardServices;
            _currencyProvider           = currencyProvider;
            _nwazetCommunicationService = nwazetCommunicationService;
            _workContextAccessor        = workContextAccessor;
            _shapeFactory               = shapeFactory;
            _transactionManager         = transactionManager;
            _contentManager             = contentManager;
            _notifier            = notifier;
            _productPriceService = productPriceService;

            T = NullLocalizer.Instance;
        }
 public PaymentEventHandler(IOrderService orderService, IPaymentService paymentService, IShoppingCart shoppingCart, IPosServiceIntegration posServiceIntegration, INwazetCommunicationService nwazetCommunicationService, IEnumerable <ICartLifeCycleEventHandler> cartLifeCycleEventHandlers)
 {
     _orderService               = orderService;
     _paymentService             = paymentService;
     _shoppingCart               = shoppingCart;
     _posServiceIntegration      = posServiceIntegration;
     _nwazetCommunicationService = nwazetCommunicationService;
     _cartLifeCycleEventHandlers = cartLifeCycleEventHandlers;
 }
 public AddressesController(
     IOrderService orderService
     , IPosServiceIntegration posServiceIntegration
     , IPaymentService paymentService
     , IShoppingCart shoppingCart
     , IOrchardServices orchardServices
     , ICurrencyProvider currencyProvider
     , INwazetCommunicationService nwazetCommunicationService)
 {
     _orderService               = orderService;
     _posServiceIntegration      = posServiceIntegration;
     _paymentService             = paymentService;
     _shoppingCart               = shoppingCart;
     _orchardServices            = orchardServices;
     _currencyProvider           = currencyProvider;
     _nwazetCommunicationService = nwazetCommunicationService;
 }
Beispiel #4
0
 public PaymentEventHandler(
     IOrderService orderService,
     IPaymentService paymentService,
     IShoppingCart shoppingCart,
     IPosServiceIntegration posServiceIntegration,
     INwazetCommunicationService nwazetCommunicationService,
     IEnumerable <ICartLifeCycleEventHandler> cartLifeCycleEventHandlers,
     IContentManager contentManager,
     IWorkflowManager workflowManager)
 {
     _orderService               = orderService;
     _paymentService             = paymentService;
     _shoppingCart               = shoppingCart;
     _posServiceIntegration      = posServiceIntegration;
     _nwazetCommunicationService = nwazetCommunicationService;
     _cartLifeCycleEventHandlers = cartLifeCycleEventHandlers;
     _contentManager             = contentManager;
     _workflowManager            = workflowManager;
 }