Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created January 18, 2011 04:41
Show Gist options
  • Select an option

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

Select an option

Save mgroves/783998 to your computer and use it in GitHub Desktop.
Lazy loading 1
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