Skip to content

Instantly share code, notes, and snippets.

@akmad
Created February 13, 2012 19:33
Show Gist options
  • Select an option

  • Save akmad/1819387 to your computer and use it in GitHub Desktop.

Select an option

Save akmad/1819387 to your computer and use it in GitHub Desktop.
Service Mocking
public class MyService : IMyService {
public MyService()
: this(new DataAccess()) { }
public MyService(IDataService data) {
_data = data;
}
private IDataService _data;
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment