*/
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;
}