Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created February 9, 2011 15:39
Show Gist options
  • Select an option

  • Save mgroves/818667 to your computer and use it in GitHub Desktop.

Select an option

Save mgroves/818667 to your computer and use it in GitHub Desktop.
private IProductRepository _productRepository;
private IProductRepository ProductRepository
{
get
{
if(_productRepository == null)
{
_productRepository = new ProductRepository();
}
return _productRepository;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment