}
}
public class LibrarySelectionTypeMapper implements RowMapper<LibrarySelectionType> {
public LibrarySelectionType mapRow(ResultSet rs, int rowNum) throws SQLException {
LibrarySelectionType lst = new LibrarySelectionType();
lst.setLibrarySelectionTypeId(rs.getLong("librarySelectionTypeId"));
lst.setName(rs.getString("name"));
lst.setDescription(rs.getString("description"));
return lst;
}