예제 #1
0
 public Specification <T> Or(Specification <T> other)
 {
     return(new OrSpecification <T>(this, other));
 }
예제 #2
0
 public Specification <T> And(Specification <T> other)
 {
     return(new AndSpecification <T>(this, other));
 }