public JsonResult ObtenerCategorias()
        {
            ICategoriaBL categoriaBL = new CategoriaBL();

            var categorias = categoriaBL.GetAll();

            var data = new
            {
                success    = categorias.Any(),
                categorias = categorias
            };

            return(Json(data, JsonRequestBehavior.AllowGet));
        }
Exemple #2
0
 // GET: Categoria
 public ActionResult Index()
 {
     return(View(categoriaBL.GetAll()));
 }