public static LinkedList <Row> ToRowEntityList(this WorkSheet worksheet) { LinkedList <Row> rowList = new LinkedList <Row>(); for (int i = 1; i < worksheet.RowCount; i++) { RangeRow row = worksheet.GetRow(i); rowList.AddLast(RowFactory.CreateRowFromCells(row.ToArray())); } return(rowList); }