Example #1
0
 /// <summary>
 /// Initializes the new user and httphandler and sets the _isLoggedIn state as false and 
 /// </summary>
 public UserModel()
 {
     _currentUser = new User();
     _isLoggedIn = false;
     _httpHandler = new UserHttpHandler(5);
 }
Example #2
0
 public UserModel()
 {
     _currentUser = new User();
     _isLoggedIn  = false;
     _httpHandler = new UserHttpHandler(5);
 }