Exemplo n.º 1
0
        private async Task <int> GetVoteCountForArticle(int articleId, VoteType type)
        {
            var count = await _voteService.GetVoteCountForArticle(articleId, type);

            return(count);
        }