Exemplo n.º 1
0
        public async Task <IActionResult> ProductAddPopup(string manufacturerId)
        {
            var model = await _manufacturerViewModelService.PrepareAddManufacturerProductModel(_workContext.CurrentCustomer.StaffStoreId);

            model.ManufacturerId = manufacturerId;
            return(View(model));
        }
Exemplo n.º 2
0
        public async Task <IActionResult> ProductAddPopup(string manufacturerId)
        {
            var model = await _manufacturerViewModelService.PrepareAddManufacturerProductModel();

            return(View(model));
        }
        public IActionResult ProductAddPopup(string manufacturerId)
        {
            var model = _manufacturerViewModelService.PrepareAddManufacturerProductModel();

            return(View(model));
        }