Content deleted Content added
Improve code |
m corrected compilation error |
||
Line 225:
{
ISpecification<T> other;
public NotSpecification(ISpecification<T> other) =>
public override bool IsSatisfiedBy(T candidate) => !other.IsSatisfiedBy(candidate);
}
|