Package ecar.dao

Examples of ecar.dao.RecursoDao


 
  private void loadRecurso(){
   
    try {
     
      final RecursoDao recursoDao = new RecursoDao(request);
     
      // carrega todos os recursos ativos
      listaRecursos = recursoDao.getAtivos();
    } catch (ECARException e) {
      logger.error("Nao foi possivel carregar Recursos ", e);
    } catch (Exception e) {
      logger.error("Nao foi possivel carregar Recursos", e);     
    }     
View Full Code Here


    /**
     *
     */
    public PopUpRecurso(){
        pojo = new RecursoRec();
        dao = new RecursoDao(null);
        this.setPesquisarEm(new String[] {"Nome"});
    }
View Full Code Here

     * @return List
     * @throws ECARException
     */
    public List pesquisar() throws ECARException {       
        try{
            Query query = new RecursoDao(null).getSession().createQuery(
                "from RecursoRec r where not (:dataInicial < r.dataIniValidadeRec or :dataFinal > r.dataFimValidadeRec) and r.indAtivoRec='S'");
            query.setDate("dataInicial", exercicio.getDataInicialExe());
            query.setDate("dataFinal", exercicio.getDataFinalExe());
            List recursos = query.list();
            List recursosCadastrados = new ItemEstruturaPrevisaoDao(null).getRecursosByFonteRecursoExercicio(item, exercicio, fonte);
View Full Code Here

TOP

Related Classes of ecar.dao.RecursoDao

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.