protected override bool Apply(object x) { var nullPredicate = new TextNull(false); var emptyPredicate = new TextEmpty(false); return(nullPredicate.Execute(x) || emptyPredicate.Execute(x)); }
public bool Apply(object x) { var nullPredicate = new TextNull(); var emptyPredicate = new TextEmpty(); return(nullPredicate.Apply(x) || emptyPredicate.Apply(x)); }