Package com.cin.dto

Examples of com.cin.dto.StateAbbvDTO


  }
 
  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;
   
  }
View Full Code Here

TOP

Related Classes of com.cin.dto.StateAbbvDTO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.