public MapperImpl GetMapper(Type type) { MapperImpl mapper; if (mappers.ContainsKey(type)) { mapper = mappers[type]; } else { mappers[type] = new MapperImpl(); } return(mappers[type]); }
public void PushMapper(Type type) { var mapper = new MapperImpl(); mappers[type] = mapper; }
public JsonObjectMapper(MapperImpl mapper, ConfigContainer configuration) { this.mapper = mapper; this.configuration = configuration; }