public ActionResult <Comment> GetCommentsByBlog(int id)
 {
     try
     {
         return(Ok(_bs.GetCommentsByBlog(id)));
     }
     catch (System.Exception error)
     {
         return(BadRequest(error.Message));
     }
 }