public async Task <ActionResult <Models.Comment> > GetComment(long id)
        {
            var comment = await _context.GetComment(id);

            if (comment == null || !CommentExists(id))
            {
                return(NotFound());
            }

            return(comment);
        }