Ejemplo n.º 1
0
 public Specification <T> Or(Specification <T> other)
 {
     return(new OrSpecification <T>(this, other));
 }
Ejemplo n.º 2
0
 public Specification <T> And(Specification <T> other)
 {
     return(new AndSpecification <T>(this, other));
 }