Package hsv.DAO

Examples of hsv.DAO.PagamentoDAO.salvarDados()


    }
   
    public void inserirPagamento() {
        try{
            PagamentoDAO dao = new PagamentoDAO();
            dao.salvarDados(pagamento);
            FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Dados Salvos com Sucesso!"));
        }
        catch(Exception e) {
            FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR,"Já existe data de vigência para os valores em questão!",""));
        }
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.