Specification pattern: Difference between revisions

Content deleted Content added
m This NoticeSent is should to be true so match with the example above
OrNot was missing from CompositeSpecification.
Line 175:
{
return new OrSpecification<T>(this, other);
}
 
public ISpecification<T> OrNot(ISpecification<T> other)
{
return new OrNotSpecification<T>(this, other);
}