Skip to content

Instantly share code, notes, and snippets.

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