Ejemplo 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;
 }
Ejemplo 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;
 }
Ejemplo n.º 3
0
 public IntFieldSource(string field, FieldCache.IIntParser parser)
     : base(field)
 {
     this.parser = parser;
 }
Ejemplo n.º 4
0
 public IntFieldSource(string field, FieldCache.IIntParser parser)
     : base(field)
 {
     this.parser = parser;
 }