示例#1
0
        public async Task <IActionResult> ProductAddPopup(string customerTagId)
        {
            var model = await _customerTagViewModelService.PrepareProductModel(customerTagId);

            return(View(model));
        }
示例#2
0
        public IActionResult ProductAddPopup(string customerTagId)
        {
            var model = _customerTagViewModelService.PrepareProductModel(customerTagId);

            return(View(model));
        }