public HeaderTestToModel(IConversionCache _cache) : base(_cache)
 {
 }
Пример #2
0
 public ItemTestToModelPublic(IConversionCache _cache) : base(_cache)
 {
 }
 public ItemTestMirrorToMirror(IConversionCache _cache) : base(_cache)
 {
 }
 public BaseTestToModel(IConversionCache _cache) : base(_cache)
 {
 }
Пример #5
0
 public MappingBase(IConversionCache _cache) => cache = _cache;
Пример #6
0
 public HeaderTestMirrorToMirror(IConversionCache _cache) : base(_cache)
 {
 }
Пример #7
0
 internal static MappingBase Get <TDestination>(Type source, IConversionCache cache) where TDestination : new()
 => GetMapperType <TDestination>(source).New <MappingBase>(cache);