bool compareNames(Cliente nameA, Cliente nameB) // compara os nomes para ordenaçao alfabetica { if (nameA.getNome() < nameB.getNome()) { return true; } else { return false; } }
bool Cliente::operator==(Cliente rhs) const { return nome== rhs.getNome() && NIF == rhs.getNIF(); }