private void AddVote(int contestEntryId) { ContestEntryBLL entry = new ContestEntryBLL(contestEntryId); entry.PeoplesChoiceScore++; entry.Update(); }
private void SubtractVote(int?contestEntryId) { ContestEntryBLL entry = new ContestEntryBLL(contestEntryId); entry.PeoplesChoiceScore--; entry.Update(); }