Package lib.util

Examples of lib.util.IteratorDsk


    return tp;
  }

  public IteratorDsk searchHealthUnitsBySpeciality(Long code) throws ObjectNotFoundException,
      RepositoryException, TransactionException {
    IteratorDsk lista = null;
    try {
      getPm().beginTransaction();
      lista = healthUnitRecord.searchHealthUnitsBySpeciality(code);
      getPm().commitTransaction();
    } catch (RepositoryException e) {
View Full Code Here


    return lista;
  }

  public IteratorDsk getSpecialityList() throws RepositoryException, ObjectNotFoundException,
      TransactionException {
    IteratorDsk lista = null;
    try {
      getPm().beginTransaction();
      lista = specialityRecord.getListaEspecialidade();
      getPm().commitTransaction();
    } catch (RepositoryException e) {
View Full Code Here

    return lista;
  }

  public IteratorDsk getDiseaseTypeList() throws RepositoryException, ObjectNotFoundException,
      TransactionException {
    IteratorDsk lista = null;
    try {
      getPm().beginTransaction();
      lista = this.diseaseRecord.getDiseaseTypeList();
      getPm().commitTransaction();
    } catch (RepositoryException e) {
View Full Code Here

    return unit;
  }

  public IteratorDsk getHealthUnitList() throws RepositoryException, ObjectNotFoundException,
      TransactionException {
    IteratorDsk lista = null;
    try {
      getPm().beginTransaction();
      lista = healthUnitRecord.getHealthUnitList();
      getPm().commitTransaction();
    } catch (RepositoryException e) {
View Full Code Here

    return lista;
  }

  public IteratorDsk getPartialHealthUnitList() throws RepositoryException,
      ObjectNotFoundException, TransactionException {
    IteratorDsk lista = null;
    try {
      getPm().beginTransaction();
      lista = healthUnitRecord.getPartialHealthUnitList();
      getPm().commitTransaction();
    } catch (RepositoryException e) {
View Full Code Here

    }
    return employee;
  }

  public IteratorDsk getComplaintList() throws ObjectNotFoundException, TransactionException {
    IteratorDsk list = null;
    try {
      getPm().beginTransaction();
      list = complaintRecord.getComplaintList();
      getPm().commitTransaction();
    } catch (ObjectNotFoundException e) {
View Full Code Here

    return s;
  }

  public IteratorDsk getSymptomList() throws RepositoryException, ObjectNotFoundException,
      CommunicationException, TransactionException {
    IteratorDsk lista = null;
    try {
      getPm().beginTransaction();
      lista = symptomRecord.getSymptomList();
      getPm().commitTransaction();
    } catch (RepositoryException e) {
View Full Code Here

TOP

Related Classes of lib.util.IteratorDsk

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.