public ActionResult Delete(int id, FormCollection form)
 {
     db.Delete(id);
     return(RedirectToAction("Index"));
 }