Beispiel #1
0
        public ActionResult Index(int id)
        {
            //aqui para obtener productos de la categoria
            var Proxy    = new BLL.Product();
            var Products = Proxy.FilterByCategoryID(id);

            return(View("ProductList", Products));
        }