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

            db.ingresoComputadores.Remove(ingresoComputadores);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
 public ActionResult Edit([Bind(Include = "SECUENCIAL,CODIGOINTERNO,CUADADDEUBICACION,DESCRIPCION,MEMORIARAM,PROCESADOR,DISCODURO,LICENCIADO,OFFICE,MARCA,MODELO,SERIE,PARTICULARIDAD,ESTADO,NODEFACTURA,VALORFACTURA,FECHAADQUISICION,OBSERVACIONES")] ingresoComputadores ingresoComputadores)
 {
     if (ModelState.IsValid)
     {
         db.Entry(ingresoComputadores).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(ingresoComputadores));
 }
        // GET: ingresoComputadores/Edit/5
        public ActionResult Edit(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            ingresoComputadores ingresoComputadores = db.ingresoComputadores.Find(id);

            if (ingresoComputadores == null)
            {
                return(HttpNotFound());
            }
            return(View(ingresoComputadores));
        }