Package com.krminc.phr.domain

Examples of com.krminc.phr.domain.DataSource


    public MedicalEvent resolveEntity(EntityManager em) {
        HealthRecord healthRecord = entity.getHealthRecord();
        if (healthRecord != null) {
            entity.setHealthRecord(em.getReference(HealthRecord.class, healthRecord.getHealthRecordId()));
        }
        DataSource dataSource = entity.getDataSource();
        if (dataSource != null) {
            entity.setDataSource(em.getReference(DataSource.class, dataSource.getDataSourceId()));
        }
        return entity;
    }
View Full Code Here

TOP

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

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.