Examples of PrescriptionItem


Examples of beans.doctor.prescription.PrescriptionItem

    private void replaceTakeDrug(DirectoryEntity entityWhat, DirectoryEntity entityWith) {
        //PrescriptionItem
        List entityList = findEntityList(PrescriptionItem.class, "takeDrug", entityWhat);
        for (int i = 0; i < entityList.size(); i++) {
            PrescriptionItem prescriptionItem = (PrescriptionItem)entityList.get(i);
            prescriptionItem.setTakeDrug((TakeDrug) entityWith);
            manager.merge(prescriptionItem);
        }
        removeEntity(entityWhat);
        manager.flush();
    }
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.