public ActionResult <IEnumerable <Comment> > GetNewsComments(int Id)
        {
            logger.LogInformation("GetNewsComments method was called.");
            var comments = newsManager.GetNewsComments(Id).ToList();

            return(Ok(comments));
        }