public List<ClienteEntidade> pesquisar(String texto, TipoPesquisaCliente tipoPesquisa) throws SQLException, NomeVazioException { return clienteDAO.pesquisar(texto, tipoPesquisa.toString()); }
public void salvar(ClienteEntidade cliente) throws SQLException { // Validações ... clienteDAO.salvar(cliente); }