pstmt.setInt(1, zone.getID());
pstmt.setInt(2, plantType.getID());
ResultSet rs = pstmt.executeQuery();
while (rs.next()) {
PlantBiomassOfZone holdPlantBiomassOfZone = new PlantBiomassOfZone(rs.getInt("bio_zone_id"));
holdPlantBiomassOfZone.setPlantTypeID(rs.getInt("plant_type_id"));
holdPlantBiomassOfZone.setNumber(rs.getInt("number"));
holdPlantBiomassOfZone.setBiomass(rs.getFloat("biomass"));
returnPlantBiomassOfZoneList.add(holdPlantBiomassOfZone);
}
rs.close();
pstmt.close();