public bool vote(Vote vote) { return votes.addVote(vote); }
public Boolean addVote(Vote vote) { bool exists = votes.Contains(vote); if (!exists) votes.Add(vote); return !exists; }