public async Task <IActionResult> UpdateCategory(int?categoryId)
 {
     return(View(await _categoryService.GetCategoryById(categoryId.Value)));
 }