public static string HashPasswordWithSHA256([NotNull] string plainText)
 {
     return(SHA256PasswordHasher.HashPassword(plainText));
 }