@Override public Telefone pesquisarPorId(Long id) throws Exception, NoResultException { return telefoneDao.pesquisarPorId(id); }
@Override public void excluir(Telefone telefone) throws Exception, ExclusaoNaoPermitidaException { telefoneDao.excluir(telefone); }
@Override public List<Telefone> listarTodos() throws Exception { return telefoneDao.listarTodos(); }
@Override public void gravar(Telefone telefone) throws Exception { telefoneDao.gravar(telefone); }