Example #1
0
        public ActionResult ShowChildCategories(int categoryId)
        {
            IEnumerable <Category>       childCategories = _categoryProvider.GetChildCategoriesById(categoryId);
            ShowChildCategoriesViewModel model           = ParseShowChildCategoriesViewModel(childCategories, categoryId);

            return(PartialView("_ShowChildCategories", model));
        }