Skip to content

Instantly share code, notes, and snippets.

@jdunne
Created December 20, 2016 02:05
Show Gist options
  • Save jdunne/22333631a6a3726f6118d76c2f165654 to your computer and use it in GitHub Desktop.
Save jdunne/22333631a6a3726f6118d76c2f165654 to your computer and use it in GitHub Desktop.
class Service
{
private readonly IAuditor _defaultAuditor = new StandardAuditor();
public void DoSomething()
  {
  DoSomething(_defaultAuditor);
  }
public void DoSomething(IAuditor auditor)
  {
  // do something…
  auditor.RecordThatSomethingWasDone();
  }
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment