public ActionResult <ICollection <CommentDto> > GetByPostId([FromRoute] Guid postId)
        {
            var comments = _commentLogic.GetComents(postId);

            return(Ok(comments));
        }