public async Task <IActionResult> AddPostCommentAsync([FromBody] ViewModels.CommentView view, string postId)
        {
            var result = await _service.AddPostCommentAsync(view, postId);

            return(Ok(result));
        }