Uses of Class
org.domain.rhims.entity.MedicalDataValue

Packages that use MedicalDataValue
org.domain.rhims.dao   
org.domain.rhims.manager   
 

Uses of MedicalDataValue in org.domain.rhims.dao
 

Methods in org.domain.rhims.dao that return types with arguments of type MedicalDataValue
 java.util.List<MedicalDataValue> MedicalDataDAOMySQL.getMedicalData(long patientID)
           
 java.util.List<MedicalDataValue> MedicalDataDAO.getMedicalData(long patientID)
          This method returns a list containing all Medical Data Values for a particular patientID.
 

Methods in org.domain.rhims.dao with parameters of type MedicalDataValue
 void MedicalDataDAOMySQL.saveMedicalData(MedicalDataValue medicalDataValue)
           
 void MedicalDataDAO.saveMedicalData(MedicalDataValue medicalDataValue)
          This method persists a MedicalDataValue entity object.
 

Uses of MedicalDataValue in org.domain.rhims.manager
 

Methods in org.domain.rhims.manager that return types with arguments of type MedicalDataValue
 java.util.List<MedicalDataValue> DataRetrievalManagerAction.getMedicalData(long patientID)
           
 java.util.List<MedicalDataValue> DataRetrievalManager.getMedicalData(long patientID)
          This method is used to retrieve a List of medical data for a given patientID.