Guest User

Untitled

a guest
Jul 16th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /// <summary>
  2. /// The SQL id of the Site
  3. /// </summary>
  4. private int _IdSite;
  5. public int IdSite
  6. {
  7. get
  8. {
  9. if (_IdSite == 0) _IdSite = ContextManager.CurrentSite.IdSite;
  10. return _IdSite;
  11. }
  12. }
  13.  
  14. ///note: ContextManager = static class
Add Comment
Please, Sign In to add comment