Package systole.domain.persons

Examples of systole.domain.persons.Patient


    public void saveClinicalInfo(ClinicalInfoWs clinicalInfoWs) throws ExceptionDAO {
        if (clinicalInfoWs == null) {
            return;
        }

        Patient patient = FacadeDB.getInstance().getPatientSyncBroker().getPatientByRemoteId(clinicalInfoWs.getPatientId());
        if (patient == null) {
            return;
        }
        FacadeDB.getInstance().startTransaction();
        ClinicalInformation clinicalInformation = new ClinicalInformation(patient);
View Full Code Here

TOP

Related Classes of systole.domain.persons.Patient

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.