*/
public Panier ajouterEpreuveINDAuPanier(int id) throws DAOException {
// récupération de la DAO dans le contexte de l'application
WebContext ctx = WebContextFactory.get();
ServletContext servletContext = ctx.getServletContext();
IEpreuveDAO dao = (IEpreuveDAO) servletContext.getAttribute("epreuveDAO");
// récupération de l'objet produit
Epreuve ep = dao.getEpreuveInd(id);
// ajout au panier
lePanier.ajouter(ep, 1);
return lePanier;
}