/// <summary>
 /// Retrieves password for username provided.
 /// </summary>
 /// <param name="username">User name to retrieve password for.</param>
 /// <returns>Password for user name.</returns>
 public string GetPassword(string username)
 {
     UserQuery = new UserQuery();
     return(UserQuery.GetPassword(username));
 }