Examples of ProfStats


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

  }

  private static final class AccProfStatsMapper implements
      RowMapper<ProfStats> {
    public ProfStats mapRow(ResultSet rs, int rowNum) throws SQLException {
      ProfStats profStats = new ProfStats();
      profStats.setId(rs.getInt("id"));
      profStats.setNom(rs.getString("nomProf"));
      profStats.setPrenom(rs.getString("prenomProf"));
      profStats.setCountap(rs.getInt("countap"));
      profStats.setDctapvalide(rs.getInt("dctapvalide"));
      profStats.setDctapattente(rs.getInt("dctapattente"));
      profStats.setDctaprefuse(rs.getInt("dctaprefuse"));
      return profStats;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.