Exemplo n.º 1
0
 /// <summary>
 /// Creates a new instance of the <see cref="VoteEventArgs"/> class
 /// </summary>
 /// <param name="pendingVotes">The votes about to be recorded.</param>
 /// <param name="cancel">Determines if the vote should be canceled</param>
 public VoteEventArgs(PollDataSet.VotesDataTable pendingVotes, Boolean cancel)
     : base(cancel)
 {
     this._pendingVotes = pendingVotes;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new instance of the <see cref="VoteEventArgs"/> class
 /// </summary>
 /// <param name="pendingVotes">The votes about to be recorded.</param>
 public VoteEventArgs(PollDataSet.VotesDataTable pendingVotes)
     : base()
 {
     this._pendingVotes = pendingVotes;
 }