예제 #1
0
 private bool IsTim()
 {
     return(_timPredicate.Matches(_counter));
 }
예제 #2
0
 private bool IsPex()
 {
     return(_pexPredicate.Matches(_counter));
 }
예제 #3
0
 public virtual bool Matches(Counter counter)
 {
     return(_timPredicate.Matches(counter) || _pexPredicate.Matches(counter));
 }