public SourceFileReader(PipeLineContext c, ConcurrentQueue <List <string> > rows) { RowsCollection = rows; Context = c; }
public COMLoader() { Context = new PipeLineContext(); }
public DestinationTableCreator(PipeLineContext c) { Context = c; }
public DataTypeSuggester(PipeLineContext c) { Context = c; this.ColumnCollection = new ConcurrentBag <ConcurrentStack <string> >(); }
public Inserter(PipeLineContext context, ConcurrentQueue <List <string> > RowsCollection) { this.context = context; this.RowsCollection = RowsCollection; done = false; }