public JsonResult ObtenerCategorias() { ICategoriaBL categoriaBL = new CategoriaBL(); var categorias = categoriaBL.GetAll(); var data = new { success = categorias.Any(), categorias = categorias }; return(Json(data, JsonRequestBehavior.AllowGet)); }
// GET: Categoria public ActionResult Index() { return(View(categoriaBL.GetAll())); }