Esempio n. 1
0
 public ActionResult DelStaff(int?id)
 {
     if (id == null)
     {
         return(HttpNotFound());
     }
     UseDB.DelStaff(id.GetValueOrDefault());
     return(RedirectToAction("Index"));
 }