Guest User

Untitled

a guest
Jul 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. private IProductRepository _productRepository;
  2. private IProductRepository ProductRepository
  3. {
  4. get
  5. {
  6. if(_productRepository == null)
  7. {
  8. _productRepository = ObjectFactory.GetInstance<IProductRepository>();
  9. }
  10. return _productRepository;
  11. }
  12. }
Add Comment
Please, Sign In to add comment