示例#1
0
 public MappingPropreties(Type klasssrc, Type klassdst)
 {
     this.srcType = klasssrc;
     this.dstType = klassdst;
     properties   = new MapPropertiesInfo(klasssrc, klassdst);
     properties.correspondentIndex();
 }
示例#2
0
 public override void actualizeInfo()
 {
     if (properties == null)
     {
         properties = new MapPropertiesInfo(srcType, dstType);
     }
     properties.correspondentIndex();
 }