コード例 #1
0
 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;
 }