public ActionResult DeleteConfirmed(int id) { tblUsrLgn tblUsrLgn = db.tblUsrLgns.Find(id); db.tblUsrLgns.Remove(tblUsrLgn); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "UsrLgnID,UsrLgn,UsrPwrd,UsrAccssLvl")] tblUsrLgn tblUsrLgn) { if (ModelState.IsValid) { db.Entry(tblUsrLgn).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(tblUsrLgn)); }
public ActionResult Create([Bind(Include = "UsrLgnID,UsrLgn,UsrPwrd,UsrAccssLvl")] tblUsrLgn tblUsrLgn) { if (ModelState.IsValid) { db.tblUsrLgns.Add(tblUsrLgn); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(tblUsrLgn)); }
// GET: tblUsrLgns/Delete/5 public ActionResult Delete(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } tblUsrLgn tblUsrLgn = db.tblUsrLgns.Find(id); if (tblUsrLgn == null) { return(HttpNotFound()); } return(View(tblUsrLgn)); }