public MarketPlaceViewComponent(MarketPlaceChamsSwitchSettings marketplacechamsswitchsettings,
                                 IStoreContext storeContext,
                                 IWorkContext workContext)
 {
     this._marketplacechamsswitchsettings = marketplacechamsswitchsettings;
     this._storeContext = storeContext;
     this._workContext  = workContext;
 }
 public MarketPlacePayment(MarketPlaceChamsSwitchSettings marketPlaceChamsSwitchSettings,
                           ILocalizationService localizationService,
                           IOrderTotalCalculationService orderTotalCalculationService,
                           ISettingService settingService,
                           IWebHelper webHelper,
                           IWorkContext workContext,
                           IStoreContext storeContext,
                           ICustomerService customerService)
 {
     this._marketPlaceChamsSwitchSettings = marketPlaceChamsSwitchSettings;
     this._localizationService            = localizationService;
     this._orderTotalCalculationService   = orderTotalCalculationService;
     this._settingService  = settingService;
     this._webHelper       = webHelper;
     this._workContext     = workContext;
     this._storeContext    = storeContext;
     this._customerService = customerService;
 }