예제 #1
0
        public async Task <ActionResult> Delete(string reviewId, string commentId, string elementId)
        {
            await _commentsManager.DeleteCommentAsync(User, reviewId, commentId);

            return(await CommentPartialAsync(reviewId, elementId));
        }