public static bool IsValidUser(string name, string password)
 {
     return(UserAccountManager.CheckIfUserValid(name, password));
 }