Exemple #1
0
        public MapperImpl GetMapper(Type type)
        {
            MapperImpl mapper;

            if (mappers.ContainsKey(type))
            {
                mapper = mappers[type];
            }
            else
            {
                mappers[type] = new MapperImpl();
            }
            return(mappers[type]);
        }
Exemple #2
0
        public void PushMapper(Type type)
        {
            var mapper = new MapperImpl();

            mappers[type] = mapper;
        }
Exemple #3
0
 public JsonObjectMapper(MapperImpl mapper, ConfigContainer configuration)
 {
     this.mapper        = mapper;
     this.configuration = configuration;
 }