public IActionResult GetCommentByPostId(int postId)
        {
            var comments = _postCommentService.GetPostCommentRelatedEntitiesByPostId(postId);

            if (comments == null)
            {
                return(BadRequest("Yorum Bulunamadı"));
            }
            //var result = _mapper.Map<List<CommentForReturnDTO>>(comments);
            return(Ok(comments));
        }