Exemplo n.º 1
0
 public ComplexMapperColumn(IColumnDefinition column, IRecordMapper <TEntity> mapper)
 {
     this.column = column;
     this.reader = mapper.GetReader();
     this.writer = mapper.GetWriter();
 }
Exemplo n.º 2
0
 public TypedReader(IReader reader, TypedRecordReader <TEntity> deserializer)
 {
     this.reader       = reader;
     this.deserializer = deserializer;
 }