Ejemplo n.º 1
0
 private IndexValue(IndexValueType type, object value)
     : this()
 {
     Type  = type;
     Value = value;
 }
Ejemplo n.º 2
0
 private static Exception TypeError(string fieldName, IndexValueType fieldType)
 {
     return(new ApplicationException($"Cannot return with string value because Indexfield '{fieldName}' is {fieldType}"));
 }
Ejemplo n.º 3
0
 private IndexValue(IndexValueType type, object value)
     : this()
 {
     Type = type;
     Value = value;
 }