Beispiel #1
0
        public void UpVote(Guid contributorId)
        {
            var vote = new UpVote(contributorId);

            Votes.Add(vote);

            DomainEvents.Publish(new QuestionUpVoted(Id, GetVoteCount(), contributorId));
        }
Beispiel #2
0
        public void UpVote(Guid contributorId)
        {
            var vote = new UpVote(contributorId);

            Votes.Add(vote);
        }