Skip to content

Instantly share code, notes, and snippets.

@atomgomba
Last active February 22, 2017 10:42
Show Gist options
  • Save atomgomba/4db4437fdbcdbcfeda7f1ea1efd6eafe to your computer and use it in GitHub Desktop.
Save atomgomba/4db4437fdbcdbcfeda7f1ea1efd6eafe to your computer and use it in GitHub Desktop.
Two ways of Dependency Injection
// injection via constructor
Baby baby = new Baby(new MockBottle());
// injection via setter
Baby baby = new Baby();
baby.giveBottle(new MockBottle());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment