
com.imsweb.algorithms.cancerreportingzone.CancerReportingZoneOutputDto Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of algorithms Show documentation
Show all versions of algorithms Show documentation
Java implementation of cancer-related algorithms (NHIA, NAPIIA, Survival Time, etc...)
The newest version!
/*
* Copyright (C) 2021 Information Management Services, Inc.
*/
package com.imsweb.algorithms.cancerreportingzone;
public class CancerReportingZoneOutputDto {
private String _cancerReportingZone;
private String _cancerReportingZoneTractCert;
public String getCancerReportingZone() {
return _cancerReportingZone;
}
public void setCancerReportingZone(String cancerReportingZone) {
_cancerReportingZone = cancerReportingZone;
}
public String getCancerReportingZoneTractCert() {
return _cancerReportingZoneTractCert;
}
public void setCancerReportingZoneTractCert(String cancerReportingZoneTractCert) {
_cancerReportingZoneTractCert = cancerReportingZoneTractCert;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy