Пример #1
0
 public static FieldCacheRangeFilter <short?> NewInt16Range(string field, FieldCache.IInt16Parser parser, short?lowerVal, short?upperVal, bool includeLower, bool includeUpper)
 {
     return(new AnonymousInt16FieldCacheRangeFilter(field, parser, lowerVal, upperVal, includeLower, includeUpper));
 }
Пример #2
0
 public Int16FieldSource(string field, FieldCache.IInt16Parser parser)
     : base(field)
 {
     this.parser = parser;
 }