public CSVExportData.VoterAnswersRow AddVoterAnswersRow(int VoterID, int AnswerID, string AnswerText, int SectionNumber)
 {
     CSVExportData.VoterAnswersRow row = (CSVExportData.VoterAnswersRow)base.NewRow();
     row.ItemArray = new object[] { VoterID, AnswerID, AnswerText, SectionNumber };
     base.Rows.Add(row);
     return(row);
 }
 public VoterAnswersRowChangeEvent(CSVExportData.VoterAnswersRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
 public VoterAnswersRowChangeEvent(CSVExportData.VoterAnswersRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveVoterAnswersRow(CSVExportData.VoterAnswersRow row)
 {
     base.Rows.Remove(row);
 }
 public void AddVoterAnswersRow(CSVExportData.VoterAnswersRow row)
 {
     base.Rows.Add(row);
 }