Exemplo n.º 1
0
 public CsvParser(ICsvFileDefinition <TColumnType> definition, string filePath)
 {
     this.Definition = definition;
     this.FilePath   = filePath;
 }
Exemplo n.º 2
0
 public TestCsvParser(ICsvFileDefinition <TestColumnType> definition, string filePath, IEnumerable <string> linesInFile)
     : base(definition, filePath)
 {
     this.linesInFile = linesInFile;
 }