Package healthwatcher.model.complaint

Examples of healthwatcher.model.complaint.DiseaseType


    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) {
View Full Code Here

TOP

Related Classes of healthwatcher.model.complaint.DiseaseType

Copyright © 2018 www.massapicom. 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.