public ActionResult DeleteConfirmed(int id) { t_foto t_foto = db.t_fotos.Find(id); db.t_fotos.Remove(t_foto); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "idimagen,codinspeccion,hora,descripcion,imagen")] t_foto t_foto) { if (ModelState.IsValid) { db.Entry(t_foto).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(t_foto)); }
// GET: t_foto/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } t_foto t_foto = db.t_fotos.Find(id); if (t_foto == null) { return(HttpNotFound()); } return(View(t_foto)); }
public ActionResult Create([Bind(Include = "idimagen,codinspeccion,hora,descripcion")] t_foto t_foto, HttpPostedFileBase imagen) { if (imagen != null && imagen.ContentLength > 0) { byte[] imagenData = null; using (var binaryReader = new BinaryReader(imagen.InputStream)) { imagenData = binaryReader.ReadBytes(imagen.ContentLength); } //setear la imagen a la entidad que se creara t_foto.imagen = imagenData; } if (ModelState.IsValid) { db.t_fotos.Add(t_foto); db.SaveChanges(); return(RedirectToAction("RegistroInspeccion", "Inspeccion")); //return RedirectToAction("RegistroInspeccion", "Inspeccion",new { id = 33 }); } return(View(t_foto)); }