Exemplo n.º 1
0
 public bool vote(Vote vote)
 {
     return votes.addVote(vote);
 }
Exemplo n.º 2
0
 public Boolean addVote(Vote vote)
 {
     bool exists = votes.Contains(vote);
     if (!exists) votes.Add(vote);
     return !exists;
 }