Package dao

Examples of dao.IEpreuveDAO


     */
    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;
    }
View Full Code Here


    }
     public Panier ajouterEpreuveEQAuPanier(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.getEpreuveEQ(id);

        // ajout au panier
        lePanier.ajouter(ep, 1);
        return lePanier;
    }
View Full Code Here

TOP

Related Classes of dao.IEpreuveDAO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.