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