BrightIdeasSoftware.ModelFilter.Filter C# (CSharp) Method

Filter() public method

Should the given model object be included?
public Filter ( object modelObject ) : bool
modelObject object
return bool
        public virtual bool Filter(object modelObject)
        {
            return this.Predicate == null ? true : this.Predicate(modelObject);
        }