public override bool Verify(object value, out string validationError)
        {
            var ph = value as string;

            if (!ValidationExtensions.ValidateNumber(ref ph))
            {
                validationError = "Invalid phone number";
                return(false);
            }
            validationError = null;
            return(true);
        }