예제 #1
0
 internal And(Specification <T> lhs, Specification <T> rhs)
 {
     Predicate = rhs.Compose(lhs, Expression.And).Predicate;
 }
예제 #2
0
파일: Or.cs 프로젝트: zamil2200/Bifrost
 internal Or(Specification <T> lhs, Specification <T> rhs)
 {
     Predicate = lhs.Compose(rhs, Expression.Or).Predicate;
 }