Package com.cin.dto

Examples of com.cin.dto.IndustryDTO


    return anDTO;
  }
  public IndustryDTO findStabilityForIndustryCode(int pCode) {
    Industry anEntity = (Industry) manager.find(Industry.class, pCode);
   
    IndustryDTO anDTO = null;
   
    if(anEntity != null) {
     
      anDTO = new IndustryDTO(anEntity);
    }
   
 
    return anDTO;
  }
View Full Code Here


    List<IndustryDTO> dtoList = new ArrayList<IndustryDTO>();
    int copySize = Math.min(resultSize, ejbList.size());
   
    for( int i = 0; i < copySize; i++ ){
      Industry ejb = (Industry) ejbList.get(i);
      dtoList.add(new IndustryDTO( ejb) );
    }
    return dtoList;
  }
View Full Code Here

      if(occStaticData != null) {
       
        aOccStab = occStaticData.getStability();
      }
     
      IndustryDTO indStaticData = this.findIndustryStabilityValue(
          user.getJobDetails().getIndustryCode());
      if(indStaticData != null) {
       
        indStab = indStaticData.getStability();
      }

      Double aUserStability = Math.sqrt(new Double(aOccStab
          * indStab))
          * new Double(10);
View Full Code Here

TOP

Related Classes of com.cin.dto.IndustryDTO

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.