public ActionResult SupprimerSelections(String id)
 {
     SelectionTable table = new SelectionTable(Session["Database"]);
     table.DeleteRecordByID(id);
     return RedirectToAction("AfficherSelections", ((BarsTable)Session["Bar"]).bar.Id);
 }