return q;
}
public DiseaseType searchDiseaseType(Long code) throws RepositoryException,
ObjectNotFoundException, TransactionException {
DiseaseType tp = null;
try {
getPm().beginTransaction();
tp = this.diseaseRecord.search(code);
getPm().commitTransaction();
} catch (RepositoryException e) {