Ejemplo n.º 1
0
        // GET: Category
        public ActionResult CategoryProductPartial()
        {
            ProductCategoryService service = new ProductCategoryService();
            int maxItem = 10;
            IEnumerable <Product_Category> model = service.GetListCategory(maxItem);

            return(PartialView(model));
        }