Package model

Examples of model.InscriptionInd


     */
    public void setSportifEpInd(int IdSp, int IdEp) throws DAOException {

        Connection conn = null;

        InscriptionInd sp = new InscriptionInd(IdSp, IdEp);//sportif epreuve individuelle
        sp.setIdSp(IdSp);
        sp.setIdep(IdEp);

        try {
            synchronized (dataSource) {
                conn = dataSource.getConnection();
            }
View Full Code Here


        //----------------------------------------------------------------------
        // Construction du modèle
        //----------------------------------------------------------------------

        InscriptionInd sportifEp = null;
        try {
            InscriptionSpIndDAO sportifEpDAO = InscriptionSpIndDAO.getInstance(dataSource);

            sportifEpDAO.setSportifEpInd(IdSp, IdEp);
View Full Code Here

TOP

Related Classes of model.InscriptionInd

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.