public async Task <ActionResult <Comment> > GetComment(int id)
        {
            var comment = await _commentDal.GetById(id);

            if (comment == null)
            {
                return(NotFound());
            }

            return(comment);
        }