Package hsv.DAO

Examples of hsv.DAO.ComputadorDAO.salvarDados()


            if(computadorSelecionado != null) {
            FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR, "Já existe este patrimonio cadastrado!", ""));
        }
            if(computadorSelecionado == null) {
            ComputadorDAO dao = new ComputadorDAO();
            dao.salvarDados(computador);
            FacesContext.getCurrentInstance().addMessage(null, new FacesMessage("Dados Salvos com Sucesso!"));
            computador = new Computador();
            }
        } catch (Exception e) {
            FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR, "Ocorreu um erro, entre em contato com a T.I", ""));
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.