예제 #1
0
        public ActionResult GetProductSameCategory(long categoryId = 0)
        {
            ProductCategoryService service = new ProductCategoryService();
            ProductCategoryDa      da      = new ProductCategoryDa();
            int maxItem = 10;

            ViewBag.CategoryName = da.getCategoryName(categoryId);
            IEnumerable <Product> model = service.GetListProductByCategory(categoryId);

            return(PartialView(model));
        }