Exemplo n.º 1
0
 public PaymentParamViewComponent(IParamPaymentSettings paramPaymentSettings,
                                  IShoppingCartModelFactory shoppingCartService,
                                  IWorkContext workContext)
 {
     this._paramPaymentSettings = paramPaymentSettings;
     this._shoppingCartService  = shoppingCartService;
     this._workContext          = workContext;
 }
Exemplo n.º 2
0
 public PaymentParamController(ISettingService settingService,
                               IParamPaymentSettings paramPaymentSettings,
                               IWorkContext workContext,
                               IOrderService orderService,
                               IStoreContext storeContext,
                               IOrderProcessingService orderProcessingService,
                               IWebHelper webHelper,
                               IHttpContextAccessor httpContextAccessor,
                               IGenericAttributeService genericAttributeService,
                               IPermissionService permissionService)
 {
     this._settingService         = settingService;
     this._paramPaymentSettings   = paramPaymentSettings;
     this._permissionService      = permissionService;
     this._workContext            = workContext;
     this._orderService           = orderService;
     this._storeContext           = storeContext;
     this._orderProcessingService = orderProcessingService;
     this._webHelper               = webHelper;
     this._httpContextAccessor     = httpContextAccessor;
     this._genericAttributeService = genericAttributeService;
 }