public bool DoAuthentication(string password)
 {
     if (helper.ComparePasswords(this.password, password))
     {
         Console.WriteLine("Auth success");
     }
     else
     {
         Console.WriteLine("Auth failed");
     }
     return(helper.ComparePasswords(this.password, password));
 }