public ActionResult Eliminar(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }

            var documento = DocumentosNegocios.GetDocumento(id.Value);

            return(View(documento));
        }
 public ActionResult Eliminar(int id)
 {
     try
     {
         DocumentosNegocios.Eliminar(id);
         return(RedirectToAction("Index"));
     }
     catch (Exception ex)
     {
         ModelState.AddModelError("", ex.Message);
         return(View());
     }
 }
 public ActionResult Editar(Documento documento)
 {
     try
     {
         DocumentosNegocios.Editar(documento);
         return(RedirectToAction("Index"));
     }
     catch (Exception ex)
     {
         ModelState.AddModelError("", ex.Message);
         return(View(documento));
     }
 }
 public ActionResult Crear(Documento documento)
 {
     try
     {
         DocumentosNegocios.Agregar(documento);
         //return Json(new { ok = true, toRedirect = "Index" }, JsonRequestBehavior.AllowGet);
         return(RedirectToAction("Index"));
     }
     catch (Exception ex)
     {
         //return Json(new { ok = false, msg = ex.Message }, JsonRequestBehavior.AllowGet);
         ModelState.AddModelError("", ex.Message);
         return(View());
     }
 }
        public ActionResult Editar(int id)
        {
            var documento = DocumentosNegocios.GetDocumento(id);

            return(View(documento));
        }
        // GET: Documento
        public ActionResult Index()
        {
            var documento = DocumentosNegocios.ListarDocumentos();

            return(View(documento));
        }