Package com.krminc.phr.domain

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


     * 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

Related Classes of com.krminc.phr.domain.HealthRecord

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.