Package DAO

Examples of DAO.EstrategiasDao.salvar()


    }
    public void insereEstrategias() {
        EstrategiasDao estDao = new EstrategiasDao();
        for (Estrategias elemento : this.estrategias) {
            estDao.salvar(elemento);
        }
    }
   
    public List<ItemPainelDeBordo> carregarGrid() {
        itensPorAno = new ItemPainelDeBordoDao().listarPainelDeBordoAno(ipbAno.getIpdbNumAnobase());
View Full Code Here


    }
   
    public void insereEstrategias() {
        EstrategiasDao estDao = new EstrategiasDao();
        for (Estrategias elemento : this.estrategias) {
            estDao.salvar(elemento);
        }
        FacesMessage msg = new FacesMessage("Item adicionado ao painel de bordo!", "");
        FacesContext.getCurrentInstance().addMessage("", msg);
    }
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.