public ActionResult ShowChildCategories(int categoryId) { IEnumerable <Category> childCategories = _categoryProvider.GetChildCategoriesById(categoryId); ShowChildCategoriesViewModel model = ParseShowChildCategoriesViewModel(childCategories, categoryId); return(PartialView("_ShowChildCategories", model)); }