Example #1
0
 public void SetPassword(string password)
 {
     PasswordHash = new PasswordHash(this, password);
 }
Example #2
0
 public Administrator(string username, string password)
     : this()
 {
     Username     = username;
     PasswordHash = new PasswordHash(this, password);
 }