Guest User

Untitled

a guest
Feb 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. #region Fields
  2. private PSDataContext _currentContext = null;
  3. private ResourceManager _resource = null;
  4. #endregion
  5.  
  6. public PSDataContext CurrentContext
  7. {
  8. get
  9. {
  10. if (_currentContext == null)
  11. {
  12. _currentContext = new PSDataContext();
  13. }
  14. return _currentContext;
  15. }
  16. set
  17. {
  18. _currentContext = value;
  19. }
  20. }
Add Comment
Please, Sign In to add comment