com.imsweb.algorithms.nhia.NhiaInputPatientDto 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...)
/*
* Copyright (C) 2013 Information Management Services, Inc.
*/
package com.imsweb.algorithms.nhia;
import java.util.List;
public class NhiaInputPatientDto {
List _nhiaInputPatientDtoList;
public List getNhiaInputPatientDtoList() {
return _nhiaInputPatientDtoList;
}
public void setNhiaInputPatientDtoList(List nhiaInputPatientDtoList) {
_nhiaInputPatientDtoList = nhiaInputPatientDtoList;
}
}