Package br.facet.tcc.exception

Examples of br.facet.tcc.exception.ServiceException


     */
    public Integer salvarDesconto(Desconto desconto) throws ServiceException {
        try {
            return this.descontoDao.salvar(desconto);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }
    }
View Full Code Here


     */
    public void alterarDesconto(Desconto desconto) throws ServiceException {
        try {
            this.descontoDao.atualizar(desconto);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }

    }
View Full Code Here

     */
    public List<Desconto> listarDescontos() throws ServiceException {
        try {
            return this.descontoDao.listar(Desconto.class);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }
    }
View Full Code Here

    public List<Desconto> buscarDescontos(Desconto desconto)
            throws ServiceException {
        try {
            return this.descontoDao.pesquisar(desconto);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }
    }
View Full Code Here

    public Integer salvarMensalidade(Mensalidade mensalidade)
            throws ServiceException {
        try {
            return this.mensalidadeDao.salvar(mensalidade);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }
    }
View Full Code Here

    public void alterarMensalidade(Mensalidade mensalidade)
            throws ServiceException {
        try {
            this.mensalidadeDao.atualizar(mensalidade);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }

    }
View Full Code Here

     */
    public List<Mensalidade> listarMensalidades() throws ServiceException {
        try {
            return this.mensalidadeDao.listar(Mensalidade.class);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }
    }
View Full Code Here

    public List<Mensalidade> buscarMensalidades(Mensalidade mensalidade)
            throws ServiceException {
        try {
            return this.mensalidadeDao.pesquisar(mensalidade);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }
    }
View Full Code Here

            throws ServiceException {

        try {
            this.avaliacaoDeAlunoDao.salvar(avaliacaoDeAluno);
        } catch (DaoException e) {
            throw new ServiceException(e.getMessage(), e);
        }

    }
View Full Code Here

        for (AvaliacaoDeAluno avaliacaoDeAluno : avaliacoesDaTurma) {
            try {
                this.avaliacaoDeAlunoDao.salvar(avaliacaoDeAluno);
            } catch (DaoException e) {
                throw new ServiceException(e.getMessage(), e);
            }
        }
    }
View Full Code Here

TOP

Related Classes of br.facet.tcc.exception.ServiceException

Copyright © 2018 www.massapicom. 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.