Example #1
0
 public MappingFields(Type klasssrc, Type klassdst)
 {
     this.srcType = klasssrc;
     this.dstType = klassdst;
     allFields    = new MapFieldsInfo(klasssrc, klassdst);
     allFields.correspondentIndex();
 }
Example #2
0
 public override void actualizeInfo()
 {
     if (allFields == null)
     {
         allFields = new MapFieldsInfo(srcType, dstType);
     }
     allFields.correspondentIndex();
 }