Esempio n. 1
0
 public EnumFieldSource(string field, FieldCache.IIntParser parser, IDictionary <int?, string> enumIntToStringMap, IDictionary <string, int?> enumStringToIntMap)
     : base(field)
 {
     this.parser             = parser;
     this.enumIntToStringMap = enumIntToStringMap;
     this.enumStringToIntMap = enumStringToIntMap;
 }
Esempio n. 2
0
 public EnumFieldSource(string field, FieldCache.IIntParser parser, IDictionary<int?, string> enumIntToStringMap, IDictionary<string, int?> enumStringToIntMap)
     : base(field)
 {
     this.parser = parser;
     this.enumIntToStringMap = enumIntToStringMap;
     this.enumStringToIntMap = enumStringToIntMap;
 }
Esempio n. 3
0
 public IntFieldSource(string field, FieldCache.IIntParser parser)
     : base(field)
 {
     this.parser = parser;
 }
Esempio n. 4
0
 public IntFieldSource(string field, FieldCache.IIntParser parser)
     : base(field)
 {
     this.parser = parser;
 }