}
public List<StateAbbvDTO> translateToState(Collection<?> pStateEntity) {
List<StateAbbvDTO> theStates = new ArrayList<StateAbbvDTO>();
for(Object anEntity : pStateEntity) {
StateAbbvDTO stateDTO = new StateAbbvDTO((Stateabbv)anEntity);
theStates.add(stateDTO);
}
return theStates;
}