public ValueInjectorUnFlattenMapper(LazyService<IMapper> mapper, IInstantiator instantiator)
 {
     this.lazyMapper = mapper;
     this.instantiator = instantiator;
 }
 public EnumerableMapper(LazyService<IMapper> lazyMapper)
 {
     this.lazyMapper = lazyMapper;
     enumerableType = typeof (IEnumerable);
 }
 public ValueInjectorFlattenMapper(LazyService <IMapper> mapper, IInstantiator instantiator)
 {
     this.lazyMapper   = mapper;
     this.instantiator = instantiator;
 }
Ejemplo n.º 4
0
 public EnumerableMapper(LazyService <IMapper> lazyMapper)
 {
     this.lazyMapper = lazyMapper;
     enumerableType  = typeof(IEnumerable);
 }