Ejemplo n.º 1
0
        public void DeleteVote(int voteID)
        {
            Vote vote = FindVote(voteID);

            if (vote != null)
            {
                Score score = vote.Parent;

                score.DeleteVote(vote);
            }
        }