Skip to content

Instantly share code, notes, and snippets.

@abacha
Last active October 21, 2015 22:05
Show Gist options
  • Select an option

  • Save abacha/5ce4a8bcb69831db81b5 to your computer and use it in GitHub Desktop.

Select an option

Save abacha/5ce4a8bcb69831db81b5 to your computer and use it in GitHub Desktop.
class Cliente {
void salvar();
void deletar();
}
class Receita {
private Cliente cliente;
public Receita(Cliente cliente) {
this.cliente = cliente
}
void calcular();
}
class Iss {
private Cliente cliente;
public Iss(Cliente cliente) {
this.cliente = cliente
}
void calcular();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment