Package DAO

Examples of DAO.PlanoAcaoDao.salvar()


    public void inserirPlanoAcao(){
        Date dtAbertura = new Date();
        PlanoAcaoDao obj = new PlanoAcaoDao();
        this.planoAcao.setPlanDtAbertura(dtAbertura);
        this.planoAcao.setUsuCodResponsavel(loginBean.usuarioConsultado1);
        obj.salvar(this.planoAcao);
        FacesMessage msg = new FacesMessage("O Plano de Ação foi cadastrado com sucesso!");
        FacesContext.getCurrentInstance().addMessage("msgUpdate", msg);
    }
    public void addItemPA(ItemPlanoDeAcao itemPlan) {
        List<ItemPlanoDeAcao> itensPA = new ArrayList<ItemPlanoDeAcao>()
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.