Exemple #1
0
 public VoterStatisticsData.VoterStatsRow AddVoterStatsRow(DateTime VotesDate, int VoterCount)
 {
     VoterStatisticsData.VoterStatsRow row = (VoterStatisticsData.VoterStatsRow)base.NewRow();
     row.ItemArray = new object[] { VotesDate, VoterCount };
     base.Rows.Add(row);
     return(row);
 }
Exemple #2
0
 public VoterStatsRowChangeEvent(VoterStatisticsData.VoterStatsRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveVoterStatsRow(VoterStatisticsData.VoterStatsRow row)
 {
     base.Rows.Remove(row);
 }
Exemple #4
0
 public void AddVoterStatsRow(VoterStatisticsData.VoterStatsRow row)
 {
     base.Rows.Add(row);
 }
 public VoterStatsRowChangeEvent(VoterStatisticsData.VoterStatsRow row, DataRowAction action)
 {
     this.eventRow = row;
     this.eventAction = action;
 }