public bool comparePassword(LoginUser user)
 {
     return this._pass == user.Pass;
 }
 public LoginUser(LoginUser user)
     : base(user)
 {
     if (user != null)
         this._pass = user.Pass;
 }