Example #1
0
        public async Task <IActionResult> EditProductsAttribute(int?id)
        {
            if (id != null)
            {
                var result = await _dataProcessingConveyor.GetProductsAttributeAsync((int)id);

                if (result != null)
                {
                    return(View(result));
                }
            }
            return(NotFound());
        }