public ReturnRequestController(IOrderService orderService,
                                ICustomerService customerService, IDateTimeHelper dateTimeHelper,
                                ILocalizationService localizationService, IWorkContext workContext,
                                IWorkflowMessageService workflowMessageService, LocalizationSettings localizationSettings,
                                ICustomerActivityService customerActivityService, IPermissionService permissionService, IShipmentService shipmentService, IRefundOrderService refundOrderService, IRefundOrderItemService refundOrderItemService)
 {
     this._orderService            = orderService;
     this._customerService         = customerService;
     this._dateTimeHelper          = dateTimeHelper;
     this._localizationService     = localizationService;
     this._workContext             = workContext;
     this._workflowMessageService  = workflowMessageService;
     this._localizationSettings    = localizationSettings;
     this._customerActivityService = customerActivityService;
     this._permissionService       = permissionService;
     this._shipmentService         = shipmentService;
     this._refundOrderService      = refundOrderService;
     this._refundOrderItemService  = refundOrderItemService;
 }
Esempio n. 2
0
 public RefundOrderController(IRefundOrderService RefundOrderService)
 {
     _RefundOrderService = RefundOrderService;
 }