Incoding-Software / Incoding-Framework

Incredible Tools for development.
http://www.incframework.com
Other
53 stars 7 forks source link

Repository: add EmptySpecification #202

Open IncodingSoftware opened 6 years ago

IncodingSoftware commented 6 years ago
    public class EmptySpecification<T> : Specification<T>
    {
        public override Expression<Func<T, bool>> IsSatisfiedBy()
        {
            return null;
        }
    }