Exemple #1
0
 public Mapper(
     IMapperOptions options,
     IMapSerializer serializer,
     IMapDeserializer deserializer,
     IMapConfig config)
 {
     this._options      = options;
     this._serializer   = serializer;
     this._deserializer = deserializer;
     this._config       = config;
 }
 public MapMedia(
     IMapTable table,
     IMapDeserializer deserializer,
     IMapperOptions options,
     IMapConfig config)
 {
     this._table        = table;
     this._deserializer = deserializer;
     this._options      = options;
     this._config       = config;
 }
 public MapDeserializeContext(IMapDeserializer deserializer, IMapTable table)
 {
     this._deserializer = deserializer;
     this.Table         = table;
 }