Package kr.or.javacafe.manage.domain

Examples of kr.or.javacafe.manage.domain.Information


 

  @Override
  @Transactional (readOnly=true)
  public Information getWelcome() {
    Information param = new Information();
    param.setId("welcome");
   
    return manageDAO.selectInfomation(param);
  }
View Full Code Here


 
  @Override
  @Transactional (readOnly=true)
  public Information getHistory() {
    Information param = new Information();
    param.setId("history");
   
    return manageDAO.selectInfomation(param);
  }
View Full Code Here

 
  @Override
  @Transactional (readOnly=true)
  public Information getRegulation() {
    Information param = new Information();
    param.setId("regulation");
   
    return manageDAO.selectInfomation(param);
  }
View Full Code Here

TOP

Related Classes of kr.or.javacafe.manage.domain.Information

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.