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)); }