Esempio n. 1
0
 public Specification <T> OrNot(Specification <T> other) => Or(other.Not());
Esempio n. 2
0
 public Specification <T> Or(Specification <T> other) => new OrSpecification <T>(this, other);
Esempio n. 3
0
 public Specification <T> AndNot(Specification <T> other) => And(other.Not());
Esempio n. 4
0
 public Specification <T> And(Specification <T> other) => new AndSpecification <T>(this, other);