Package DAO

Examples of DAO.UnidadeDao.salvar()


        return listaItens;
    }
   
    public void inserirUnidade(){
        UnidadeDao obj = new UnidadeDao();
        obj.salvar(this.unidade);
        FacesMessage msg = new FacesMessage("Unidade foi cadastrada com sucesso!", "");
        FacesContext.getCurrentInstance().addMessage("", msg);
    }
    public void saveEdit(Unidade unidade){
        this.unidadeSelect = unidade;
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.