Exemplo n.º 1
0
 public static string IfInvalidUsaPhone(this string value, string defaultValue)
 {
     return(IsUsaPhone(value) ? Fix.ScrubNumber(value.IfEmpty("")) : defaultValue.IfEmpty(""));
 }
Exemplo n.º 2
0
 public static bool IsDate(this string value)
 {
     return(Fix.ParseStringToDate(value) != null);
 }