5556575859606162
*/ public Integer salvarDesconto(Desconto desconto) throws ServiceException { try { return this.descontoDao.salvar(desconto); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
676869707172737475
*/ public void alterarDesconto(Desconto desconto) throws ServiceException { try { this.descontoDao.atualizar(desconto); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
8081828384858687
*/ public List<Desconto> listarDescontos() throws ServiceException { try { return this.descontoDao.listar(Desconto.class); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
949596979899100101
public List<Desconto> buscarDescontos(Desconto desconto) throws ServiceException { try { return this.descontoDao.pesquisar(desconto); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
107108109110111112113114
public Integer salvarMensalidade(Mensalidade mensalidade) throws ServiceException { try { return this.mensalidadeDao.salvar(mensalidade); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
120121122123124125126127128
public void alterarMensalidade(Mensalidade mensalidade) throws ServiceException { try { this.mensalidadeDao.atualizar(mensalidade); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
133134135136137138139140
*/ public List<Mensalidade> listarMensalidades() throws ServiceException { try { return this.mensalidadeDao.listar(Mensalidade.class); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
147148149150151152153154
public List<Mensalidade> buscarMensalidades(Mensalidade mensalidade) throws ServiceException { try { return this.mensalidadeDao.pesquisar(mensalidade); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
495051525354555657
throws ServiceException { try { this.avaliacaoDeAlunoDao.salvar(avaliacaoDeAluno); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } }
666768697071727374
for (AvaliacaoDeAluno avaliacaoDeAluno : avaliacoesDaTurma) { try { this.avaliacaoDeAlunoDao.salvar(avaliacaoDeAluno); } catch (DaoException e) { throw new ServiceException(e.getMessage(), e); } } }