Beispiel #1
0
        public async Task <CommentViewModel> GetComment(int id)
        {
            var comment = await _commentLogic.Get(id);

            return(new CommentViewModel {
                Comment = comment.Text, Id = comment.Id
            });
        }