Пример #1
0
        public ActionResult Breadcrumb(string nameCategory)
        {
            var modelCategory = _productCategoryService.CheckBreadCrumb(nameCategory);
            var listCategory  = Mapper.Map <IEnumerable <ProductCategory>,
                                            IEnumerable <ProductCategoryViewModel> > (modelCategory);

            return(PartialView(listCategory));
        }