/** Specifies that the PSA column be returned in this detail query. */ public void addColumnPsa(DiagnosticTestFilterDto dto) { if (dto != null) { if (dto.isShowResultClinLab()) { getQueryConsent().addColumnPsa(); } } }
/** Specifies that the DRE column be returned in this detail query. */ public void addColumnDre(DiagnosticTestFilterDto dto) { if (dto != null) { if (dto.isShowResultClinFindings()) { getQueryConsent().addColumnDre(); } } }
/** Specifies that the diagnostic cocept column be returned in this detail query. */ public void addDiagnosticTest(DiagnosticTestFilterDto dto) { if (dto != null) { if (dto.isShowResultDiag()) { getQueryDiagnostic(dto); } } }