public ComponentAsIdLikeComponetAttributesMapper(IComponentAsIdMapper realMapper)
 {
     if (realMapper == null)
     {
         throw new ArgumentNullException("realMapper");
     }
     this.realMapper = realMapper;
 }
示例#2
0
 public ComponentAsIdLikeComponentAttributesMapper(IComponentAsIdMapper realMapper)
 {
     if (realMapper == null)
     {
         throw new ArgumentNullException("realMapper");
     }
     _realMapper = realMapper;
 }