Examples of HealthRecord


Examples of com.krminc.phr.domain.HealthRecord

     * Returns the resolved Allergy entity.
     *
     * @return an resolved entity
     */
    public Allergy resolveEntity(EntityManager em) {
        HealthRecord healthRecord = entity.getHealthRecord();
        if (healthRecord != null) {
            entity.setHealthRecord(em.getReference(HealthRecord.class, healthRecord.getHealthRecordId()));
        }
        return entity;
    }
View Full Code Here

Examples of com.krminc.phr.domain.HealthRecord

     * Returns the resolved Immunization entity.
     *
     * @return an resolved entity
     */
    public Immunization resolveEntity(EntityManager em) {
        HealthRecord healthRecord = entity.getHealthRecord();
        if (healthRecord != null) {
            entity.setHealthRecord(em.getReference(HealthRecord.class, healthRecord.getHealthRecordId()));
        }
        return entity;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.