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