public static PropertyMustBe <T, string> MustNotBeNullOrWhiteSpace <T>(this PropertyMustBe <T, string> actual)
 {
     return(actual.IsNot(string.IsNullOrWhiteSpace));
 }
 public static PropertyMustBe <T, string> MustNotBeNullOrEmpty <T>(this PropertyMustBe <T, string> actual)
 {
     return(actual.IsNot(string.IsNullOrEmpty));
 }