Skip to content

Instantly share code, notes, and snippets.

@carlwoodhouse
Last active October 5, 2015 12:59
Show Gist options
  • Save carlwoodhouse/db80bade8c6b9d5072d3 to your computer and use it in GitHub Desktop.
Save carlwoodhouse/db80bade8c6b9d5072d3 to your computer and use it in GitHub Desktop.
private readonly ISuesService suesService;
// current
void SuesController(ISuesService ss)
{
this.suesService = ss;
}
// without di
void SuesController()
{
this.suesService = new SuesService();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment