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