public CSVExportData.ExportAnswersRow AddExportAnswersRow(string ColumnHeader)
 {
     CSVExportData.ExportAnswersRow row = (CSVExportData.ExportAnswersRow)base.NewRow();
     object[] objArray = new object[2];
     objArray[1]   = ColumnHeader;
     row.ItemArray = objArray;
     base.Rows.Add(row);
     return(row);
 }
 public ExportAnswersRowChangeEvent(CSVExportData.ExportAnswersRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
 public ExportAnswersRowChangeEvent(CSVExportData.ExportAnswersRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveExportAnswersRow(CSVExportData.ExportAnswersRow row)
 {
     base.Rows.Remove(row);
 }
 public void AddExportAnswersRow(CSVExportData.ExportAnswersRow row)
 {
     base.Rows.Add(row);
 }