public CommentDto Get(Guid id)
        {
            var        comment    = _unitOfwork.Comment.GetById(id);
            CommentDto commentDto = new CommentDto();

            commentDto.InjectFrom(comment);
            return(commentDto);
        }