public static Criteria <Item> greater_than <Item, Property>(this IProvideAccessToMatchBuilders <Item, Property> extension_point, Property value) where Property : IComparable <Property>
 {
     return(create_using(extension_point, Criterias.greater_than(value)));
 }
Пример #2
0
 public Criteria <Item> greater_than(Property value)
 {
     return(create_using(Criterias.greater_than(value)));
 }