Beispiel #1
0
 public DictionaryMappingRule(DictionaryMappingDirection direction, Type type, TypeFilterCondition typeFilterCondition)
 {
     this.Direction      = direction;
     this.Condition      = new TypeMatchCondition();
     this.Condition.Type = type;
     this.Condition.TypeFilterCondition = typeFilterCondition;
 }
Beispiel #2
0
 public MappingCondition()
 {
     this.Source = new TypeMatchCondition();
     this.Target = new TypeMatchCondition();
 }