Package org.ldv.sio.getap.app

Examples of org.ldv.sio.getap.app.DateStats


  }

  private static final class AccDateStatsMapper implements
      RowMapper<DateStats> {
    public DateStats mapRow(ResultSet rs, int rowNum) throws SQLException {
      DateStats typeApParMois = new DateStats();

      String annee = org.ldv.sio.getap.utils.UtilSession
          .getAnneeScolaireInSession();

      typeApParMois.setNomProf(rs.getString("nomProf"));
      typeApParMois.setPrenomProf(rs.getString("prenomProf"));
      typeApParMois.setDateAP(rs.getString("dateAction"));
      typeApParMois.setTypeAP(rs.getString("typeAP"));
      typeApParMois.setNbSolicitant(rs.getInt("nbSolicitant"));
      typeApParMois.setListEleve(getAllEleveByAAP(annee,
          rs.getString("dateAction"), rs.getInt("idProf"),
          rs.getString("typeAP")));

      return typeApParMois;
View Full Code Here


    }
  }

  private static final class MoisMapper implements RowMapper<DateStats> {
    public DateStats mapRow(ResultSet rs, int rowNum) throws SQLException {
      DateStats mois = new DateStats();
      mois.setNumMois(rs.getString("mois"));
      mois.setMois(rs.getString("mois"));

      return mois;

    }
View Full Code Here

TOP

Related Classes of org.ldv.sio.getap.app.DateStats

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.