Examples of IndustryDTO


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

Examples of com.cin.dto.IndustryDTO

    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

Examples of com.cin.dto.IndustryDTO

      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
Copyright © 2018 www.massapi.com. 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.