validate csv info

This commit is contained in:
2017-08-01 14:43:55 -05:00
parent 0911479d22
commit 405fe94953
3 changed files with 55 additions and 3 deletions

View File

@ -914,6 +914,10 @@ namespace EduNetworkBuilder
{
return ValidateString(password, AllowedUsernameCharacters);
}
public static bool ValidateFullName(string password)
{
return ValidateString(password, AllowedUsernameCharacters + " ");
}
}
}