Exemplo n.º 1
0
 internal And(Specification <T> lhs, Specification <T> rhs)
 {
     Predicate = rhs.Compose(lhs, Expression.And).Predicate;
 }
Exemplo n.º 2
0
 internal Or(Specification <T> lhs, Specification <T> rhs)
 {
     Predicate = lhs.Compose(rhs, Expression.Or).Predicate;
 }