public async Task <ActionResult> DeleteConfirmed(int id) { complejo complejo = await db.complejoes.FindAsync(id); db.complejoes.Remove(complejo); await db.SaveChangesAsync(); return(RedirectToAction("Index")); }
public async Task <ActionResult> Edit([Bind(Include = "id,descripcion,fecha_alta,fecha_baja,usuario_alta,fecha_modificacion,usuario_modificacion,usuario_baja")] complejo complejo) { if (ModelState.IsValid) { complejo.fecha_modificacion = DateTime.Now; complejo.usuario_modificacion = User.Identity.Name; db.Entry(complejo).State = EntityState.Modified; await db.SaveChangesAsync(); return(RedirectToAction("Index")); } return(View(complejo)); }
public async Task <ActionResult> Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } complejo complejo = await db.complejoes.FindAsync(id); if (complejo == null) { return(HttpNotFound()); } return(View(complejo)); }