public ActionResult EditerSelections(String Id)
 {
     SelectionTable table = new SelectionTable(Session["Database"]);
     table.SelectByID(Id);
     BieresTable bieres = new BieresTable(Session["Database"]);
     bieres.SelectByID(table.Selection.IdBiere);
     table.Selection.ListeBieres = new List<BieresRecord>();
     table.Selection.ListeBieres.Add(bieres.biere);
     return View(table.Selection);
 }