Package systole.synchronization.remote.ws

Examples of systole.synchronization.remote.ws.ReportWs


     */
    private ReportWs convertToRemoteReport(Report report) {
        if (report == null) {
            return null;
        }
        ReportWs reportWs = new ReportWs();
        reportWs.setBackgroundFamily(report.getBackgroundFamily());
        reportWs.setBackgroundMedicines(report.getBackgroundMedicines());
        reportWs.setBackgroundPathologies(report.getBackgroundPathologies());
        reportWs.setBackgroundSurgeries(report.getBackgroundSurgeries());
        reportWs.setCommentAod(report.getCommentAOD());
        reportWs.setCommentAos(report.getCommentAOS());
        reportWs.setCommentIar(report.getCommentIAR());
        reportWs.setComments(report.getComments());
        reportWs.setConclusion(report.getConclusion());
        reportWs.setHabitsSummary(report.getHabitsSummary());
        return reportWs;
    }
View Full Code Here

TOP

Related Classes of systole.synchronization.remote.ws.ReportWs

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.