Exemplo n.º 1
0
 public Row(IRow input, RowToRowMapperTransformBase parent, ISchema schema, Delegate[] getters)
 {
     _input   = input;
     _parent  = parent;
     _schema  = schema;
     _getters = getters;
 }
Exemplo n.º 2
0
 public RowImpl(Row input, RowToRowMapperTransformBase parent, Schema schema, Delegate[] getters, Action disposer)
     : base(input)
 {
     _parent   = parent;
     _schema   = schema;
     _getters  = getters;
     _disposer = disposer;
 }