Exemple #1
0
 public ReturnRequestController(IReturnRequestModelFactory returnRequestModelFactory,
                                IReturnRequestService returnRequestService,
                                IOrderService orderService,
                                IWorkContext workContext,
                                IStoreContext storeContext,
                                IOrderProcessingService orderProcessingService,
                                ILocalizationService localizationService,
                                ICustomerService customerService,
                                IWorkflowMessageService workflowMessageService,
                                ICustomNumberFormatter customNumberFormatter,
                                IDownloadService downloadService,
                                LocalizationSettings localizationSettings,
                                OrderSettings orderSettings)
 {
     this._returnRequestModelFactory = returnRequestModelFactory;
     this._returnRequestService      = returnRequestService;
     this._orderService           = orderService;
     this._workContext            = workContext;
     this._storeContext           = storeContext;
     this._orderProcessingService = orderProcessingService;
     this._localizationService    = localizationService;
     this._customerService        = customerService;
     this._workflowMessageService = workflowMessageService;
     this._customNumberFormatter  = customNumberFormatter;
     this._downloadService        = downloadService;
     this._localizationSettings   = localizationSettings;
     this._orderSettings          = orderSettings;
 }
Exemple #2
0
 public ReturnRequestController(IReturnRequestModelFactory returnRequestModelFactory,
                                IReturnRequestService returnRequestService,
                                IOrderService orderService,
                                IWorkContext workContext,
                                IStoreContext storeContext,
                                ICurrencyService currencyService,
                                IPriceFormatter priceFormatter,
                                IOrderProcessingService orderProcessingService,
                                ILocalizationService localizationService,
                                ICustomerService customerService,
                                IWorkflowMessageService workflowMessageService,
                                IDateTimeHelper dateTimeHelper,
                                LocalizationSettings localizationSettings,
                                ICacheManager cacheManager,
                                ICustomNumberFormatter customNumberFormatter)
 {
     this._returnRequestModelFactory = returnRequestModelFactory;
     this._returnRequestService      = returnRequestService;
     this._orderService           = orderService;
     this._workContext            = workContext;
     this._storeContext           = storeContext;
     this._currencyService        = currencyService;
     this._priceFormatter         = priceFormatter;
     this._orderProcessingService = orderProcessingService;
     this._localizationService    = localizationService;
     this._customerService        = customerService;
     this._workflowMessageService = workflowMessageService;
     this._dateTimeHelper         = dateTimeHelper;
     this._localizationSettings   = localizationSettings;
     this._cacheManager           = cacheManager;
     this._customNumberFormatter  = customNumberFormatter;
 }
 public EmailEventsCapture(IEmailSender emailSender, UserSettings userSettings, EmailSenderSettings emailSenderSettings, IOrderModelFactory orderModelFactory, IUserModelFactory userModelFactory, IShipmentModelFactory shipmentModelFactory, SecuritySettings securitySettings, IReturnRequestModelFactory returnRequestModelFactory)
 {
     _emailSender               = emailSender;
     _userSettings              = userSettings;
     _emailSenderSettings       = emailSenderSettings;
     _orderModelFactory         = orderModelFactory;
     _userModelFactory          = userModelFactory;
     _shipmentModelFactory      = shipmentModelFactory;
     _securitySettings          = securitySettings;
     _returnRequestModelFactory = returnRequestModelFactory;
 }
Exemple #4
0
 public OrdersController(IOrderService orderService, IOrderModelFactory orderModelFactory, ICustomLabelService customLabelService, OrderSettings orderSettings, IShipmentStatusHistoryService shipmentStatusHistoryService, IReturnRequestService returnRequestService, IReturnRequestModelFactory requestModelFactory, IOrderAccountant orderAccountant, IPdfService pdfService, IDownloadService downloadService, IOrderItemDownloadService orderItemDownloadService, IProductModelFactory productModelFactory)
 {
     _orderService                 = orderService;
     _orderModelFactory            = orderModelFactory;
     _customLabelService           = customLabelService;
     _orderSettings                = orderSettings;
     _shipmentStatusHistoryService = shipmentStatusHistoryService;
     _returnRequestService         = returnRequestService;
     _requestModelFactory          = requestModelFactory;
     _orderAccountant              = orderAccountant;
     _pdfService               = pdfService;
     _downloadService          = downloadService;
     _orderItemDownloadService = orderItemDownloadService;
     _productModelFactory      = productModelFactory;
 }
 public ReturnRequestController(ICustomerActivityService customerActivityService,
                                ILocalizationService localizationService,
                                ILocalizedEntityService localizedEntityService,
                                INotificationService notificationService,
                                IOrderService orderService,
                                IPermissionService permissionService,
                                IReturnRequestModelFactory returnRequestModelFactory,
                                IReturnRequestService returnRequestService,
                                IWorkflowMessageService workflowMessageService)
 {
     _customerActivityService   = customerActivityService;
     _localizationService       = localizationService;
     _localizedEntityService    = localizedEntityService;
     _notificationService       = notificationService;
     _orderService              = orderService;
     _permissionService         = permissionService;
     _returnRequestModelFactory = returnRequestModelFactory;
     _returnRequestService      = returnRequestService;
     _workflowMessageService    = workflowMessageService;
 }