Ejemplo n.º 1
0
 public ActionResult Index()
 {
     return(View(empDB.ListAll()));
 }
 public JsonResult List()
 {
     return(Json(empDB.ListAll(), JsonRequestBehavior.AllowGet));
 }
        public JsonResult List()
        {
            var lista = empleadoDB.ListAll();

            return(Json(lista, JsonRequestBehavior.AllowGet));
        }