return theZipDTO;
}
public List<EmploymentStatusDTO> translateToEmploymentStatusDTO(Collection<?> pEmploymentStatusEntity) {
List<EmploymentStatusDTO> theEmploymentStatusDTO = new ArrayList<EmploymentStatusDTO>();
EmploymentStatusDTO aDTO = null;
for(Object aEmploymentstat : pEmploymentStatusEntity) {
aDTO = new EmploymentStatusDTO((Employmentstat)aEmploymentstat);
theEmploymentStatusDTO.add(aDTO);
}
return theEmploymentStatusDTO;