public static class Store implements RowMapper<InformationToStore>{
@Override
public InformationToStore mapRow(ResultSet rs, int rowNum)
throws SQLException {
InformationToStore infoStore = new InformationToStore();
infoStore.setInformationId(rs.getInt("information_id"));
infoStore.setStoreId(rs.getInt("store_id"));
return infoStore;
}