public static string CreateRandomPassword(int PasswordLength) { string chars = UserManagementLogic.Generate(PasswordLength, 8); return(chars); }