Skip to content

Instantly share code, notes, and snippets.

@brunoazevedomendonca
Last active September 13, 2017 16:49
Show Gist options
  • Save brunoazevedomendonca/4b38912653e474d934460e0208e46504 to your computer and use it in GitHub Desktop.
Save brunoazevedomendonca/4b38912653e474d934460e0208e46504 to your computer and use it in GitHub Desktop.
tributacao
private void tributacao(Tributavel tributavel){
tributavel.descontaTributo();
}
public interface Tributavel {
void descontaTributo();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment