Beispiel #1
0
 public PayPalIPNService(IOrderService orderService, IOrderNoteService orderNoteService, IOrderRefundService orderRefundService, PayPalExpressCheckoutSettings payPalExpressCheckoutSettings)
 {
     _orderService                  = orderService;
     _orderNoteService              = orderNoteService;
     _orderRefundService            = orderRefundService;
     _payPalExpressCheckoutSettings = payPalExpressCheckoutSettings;
 }
Beispiel #2
0
 public PayPalIPNService(IOrderService orderService, IOrderNoteService orderNoteService, IOrderRefundService orderRefundService, PayPalExpressCheckoutSettings payPalExpressCheckoutSettings)
 {
     _orderService = orderService;
     _orderNoteService = orderNoteService;
     _orderRefundService = orderRefundService;
     _payPalExpressCheckoutSettings = payPalExpressCheckoutSettings;
 }
 public PayPalPlusPrevisaoEnvioTask(IPayPalPlusOrderService payPalPlusOrderService,
                                    IOrderService orderService,
                                    IOrderNoteService orderNoteService,
                                    ILogger logger)
 {
     _payPalPlusOrderService = payPalPlusOrderService;
     _orderService           = orderService;
     _orderNoteService       = orderNoteService;
     _logger = logger;
 }
 public IuguPaymentProcessor(
     IWorkContext workContext,
     IAddressAttributeParser addressAttributeParser,
     IStoreContext storeContext,
     IuguPaymentSettings iuguPaymentSettings,
     IOrderNoteService orderNoteService
     )
 {
     _workContext            = workContext;
     _addressAttributeParser = addressAttributeParser;
     _storeContext           = storeContext;
     _iuguPaymentSettings    = iuguPaymentSettings;
     _orderNoteService       = orderNoteService;
 }
 public PaymentIuguController(ILogger logger,
                              IOrderService orderService,
                              IOrderProcessingService orderProcessingService,
                              IWorkContext workContext,
                              IWorkflowMessageService workflowMessageService,
                              IOrderNoteService orderNoteService,
                              IuguPaymentSettings iuguPaymentSettings,
                              IStoreService storeService,
                              ISettingService settingService,
                              ILocalizationService localizationService)
 {
     _logger                 = logger;
     _orderService           = orderService;
     _orderProcessingService = orderProcessingService;
     _workContext            = workContext;
     _workflowMessageService = workflowMessageService;
     _orderNoteService       = orderNoteService;
     _iuguPaymentSettings    = iuguPaymentSettings;
     _storeService           = storeService;
     _settingService         = settingService;
     _localizationService    = localizationService;
 }
 public PayPalPlusBrasilPaymentProcessor(
     IWorkContext workContext,
     IStoreService storeService,
     PayPalPlusBrasilPaymentSettings payPalPlusBrasilPaymentSettings,
     ISettingService settingService,
     IGenericAttributeService genericAttributeService,
     ICurrencyService currencyService, ICustomerService customerService,
     CurrencySettings currencySettings, IWebHelper webHelper,
     IOrderTotalCalculationService orderTotalCalculationService,
     IOrderNoteService orderNoteService
     )
 {
     _workContext  = workContext;
     _storeService = storeService;
     _payPalPlusBrasilPaymentSettings = payPalPlusBrasilPaymentSettings;
     _settingService          = settingService;
     _genericAttributeService = genericAttributeService;
     _currencyService         = currencyService;
     _customerService         = customerService;
     _currencySettings        = currencySettings;
     _webHelper = webHelper;
     _orderTotalCalculationService = orderTotalCalculationService;
     _orderNoteService             = orderNoteService;
 }
 public AddOrderCancelledNote(IOrderNoteService orderNoteService, IGetCurrentUser getCurrentUser)
 {
     _orderNoteService = orderNoteService;
     _getCurrentUser = getCurrentUser;
 }
 public OrderNoteController(IOrderNoteService orderNoteService, ExtendedUserManager userManager)
 {
     _orderNoteService = orderNoteService;
     _userManager      = userManager;
 }
Beispiel #9
0
 public AddOrderCancelledNote(IOrderNoteService orderNoteService, IGetCurrentUser getCurrentUser)
 {
     _orderNoteService = orderNoteService;
     _getCurrentUser   = getCurrentUser;
 }
 public OrderNoteController(IOrderNoteService orderNoteService, IOrderService orderService)
 {
     _orderNoteService = orderNoteService;
     _orderService     = orderService;
 }
Beispiel #11
0
 public OrderLineService(ISession session, IOrderNoteService orderNoteService)
 {
     _session = session;
     _orderNoteService = orderNoteService;
 }
 public OrderNoteControllerTests()
 {
     _orderNoteService = A.Fake<IOrderNoteService>();
     _orderService = A.Fake<IOrderService>();
     _orderNoteController = new OrderNoteController(_orderNoteService, _orderService);
 }
Beispiel #13
0
 public AddMarkAsPaidNote(IOrderNoteService orderNoteService, IGetCurrentUser getCurrentUser)
 {
     _orderNoteService = orderNoteService;
     _getCurrentUser = getCurrentUser;
 }
Beispiel #14
0
 public OrderNoteControllerTests()
 {
     _orderNoteService    = A.Fake <IOrderNoteService>();
     _orderService        = A.Fake <IOrderService>();
     _orderNoteController = new OrderNoteController(_orderNoteService, _orderService);
 }
 public OrderLineService(ISession session, IOrderNoteService orderNoteService)
 {
     _session          = session;
     _orderNoteService = orderNoteService;
 }
Beispiel #16
0
 public AddMarkAsPaidNote(IOrderNoteService orderNoteService, IGetCurrentUser getCurrentUser)
 {
     _orderNoteService = orderNoteService;
     _getCurrentUser   = getCurrentUser;
 }