public async Task <ActionResult> DeleteConfirmed(int id) { estadoExpediente estadoExpediente = await db.estadoExpediente.FindAsync(id); db.estadoExpediente.Remove(estadoExpediente); await db.SaveChangesAsync(); return(RedirectToAction("Index")); }
public async Task <ActionResult> Edit([Bind(Include = "id,estado")] estadoExpediente estadoExpediente) { if (ModelState.IsValid) { db.Entry(estadoExpediente).State = EntityState.Modified; await db.SaveChangesAsync(); return(RedirectToAction("Index")); } return(View(estadoExpediente)); }
public async Task <ActionResult> Create([Bind(Include = "id,estado")] estadoExpediente estadoExpediente) { if (ModelState.IsValid) { db.estadoExpediente.Add(estadoExpediente); await db.SaveChangesAsync(); return(RedirectToAction("Index")); } return(View(estadoExpediente)); }
// GET: estadoExpedientes/Delete/5 public async Task <ActionResult> Delete(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } estadoExpediente estadoExpediente = await db.estadoExpediente.FindAsync(id); if (estadoExpediente == null) { return(HttpNotFound()); } return(View(estadoExpediente)); }