Esempio n. 1
0
 public RowRecord(IExcelRow row, SheetRecord sheet, IExcelRowParseResult parseResult)
 {
     FillData(row, sheet);
     FillParseResult(parseResult);
 }
Esempio n. 2
0
 private void FillData(IExcelRow row, SheetRecord sheetRecord)
 {
     Index       = row.Index;
     SheetRecord = sheetRecord;
     CellRecords = row.Cells.Select(x => new CellRecord(x)).ToArray();
 }
Esempio n. 3
0
 public RowRecord(IExcelRow row, SheetRecord sheet)
 {
     FillData(row, sheet);
 }