public ActionResult DeleteConfirmed(int id)
        {
            gest_factura gest_factura = db.gest_factura.Find(id);

            db.gest_factura.Remove(gest_factura);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "serie,estado,fecha")] gest_factura gest_factura)
 {
     if (ModelState.IsValid)
     {
         db.Entry(gest_factura).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     ViewBag.serie = new SelectList(db.mov_factura_credito, "serie", "cancelado", gest_factura.serie);
     return(View(gest_factura));
 }
        public ActionResult Create([Bind(Include = "serie,estado,fecha")] gest_factura gest_factura)
        {
            if (ModelState.IsValid)
            {
                db.insert_factura(gest_factura.serie, gest_factura.estado, gest_factura.fecha);
                db.SaveChanges();
                return(RedirectToAction("Create"));
            }

            ViewBag.serie = new SelectList(db.mov_factura_credito, "serie", "cancelado", gest_factura.serie);
            return(View(gest_factura));
        }
        // GET: gest_factura/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            gest_factura gest_factura = db.gest_factura.Find(id);

            if (gest_factura == null)
            {
                return(HttpNotFound());
            }
            return(View(gest_factura));
        }
        // GET: gest_factura/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            gest_factura gest_factura = db.gest_factura.Find(id);

            if (gest_factura == null)
            {
                return(HttpNotFound());
            }
            ViewBag.serie = new SelectList(db.mov_factura_credito, "serie", "cancelado", gest_factura.serie);
            return(View(gest_factura));
        }