Example #1
0
 public ActionResult Effacer(String Id)
 {
     Liste liste = new Liste(Session["DB_REPO"]);
     liste.DeleteRecordByID(Id);
     return RedirectToAction("Lister", "Liste");
 }