public async Task <IActionResult> RemoveComment(Guid id, Guid commentId)
        {
            var command = new RemoveComment
            {
                RemarkId  = id,
                CommentId = commentId
            };
            var comment = await _remarkService.RemoveCommentAsync(command);

            var dto = new CommentDto
            {
                Id       = comment.Id,
                AuthorId = comment.AuthorId,
                Status   = comment.Status.ToString(),
                Text     = comment.Text
            };

            return(Ok(dto));
        }