Last active
October 21, 2015 22:05
-
-
Save abacha/5ce4a8bcb69831db81b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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