public ActionResult EditTableRowDelete(Int32 Jobtypeid) { using (jobtypeCtl db = new jobtypeCtl()){ db.delete(Jobtypeid); return(RedirectToAction("EditTable")); } }
public ActionResult Delete(Int32 Jobtypeid) { using (jobtypeCtl db = new jobtypeCtl()){ db.delete(Jobtypeid); return(RedirectToAction("Index")); } }
public ActionResult EditTableRowsDelete(string records) { using (jobtypeCtl db = new jobtypeCtl()){ foreach (string id in records.Trim(',').Split(',')) { if (!string.IsNullOrEmpty(id.Trim())) { db.delete(Convert.ToInt32(id)); } } return(View()); } }