public CSVExportData.VotersRow AddVotersRow(string ContextUserName, DateTime VoteDate, DateTime StartDate, string IPSource, int Score, string Email, string UserName)
 {
     CSVExportData.VotersRow row = (CSVExportData.VotersRow)base.NewRow();
     object[] objArray           = new object[8];
     objArray[1]   = ContextUserName;
     objArray[2]   = VoteDate;
     objArray[3]   = StartDate;
     objArray[4]   = IPSource;
     objArray[5]   = Score;
     objArray[6]   = Email;
     objArray[7]   = UserName;
     row.ItemArray = objArray;
     base.Rows.Add(row);
     return(row);
 }
 public VotersRowChangeEvent(CSVExportData.VotersRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveVotersRow(CSVExportData.VotersRow row)
 {
     base.Rows.Remove(row);
 }
 public void AddVotersRow(CSVExportData.VotersRow row)
 {
     base.Rows.Add(row);
 }
 public VotersRowChangeEvent(CSVExportData.VotersRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }