public void ValidateColumnNames(ExcelWorksheet ws)
        {
            List <string> colNames = WorksheetHelper.GetColNamesInExcelSheet(ws, lastCol);

            foreach (var c in colsRequired)
            {
                if (!colNames.Contains(c))
                {
                    throw new ValidationException("Column name " + c + " doesn't exist in the excel file");
                }
            }
        }