public static bool Length(string input, int minLength, int maxLength)
 {
     return(LengthValidator.IsValidImpl(input, minLength, maxLength));
 }