예제 #1
0
        public async Task <IActionResult> DeleteComment(int lotId, int commentId)
        {
            await _deleteService.DeleteCommentAsync(lotId, commentId);

            return(RedirectToAction("Details", new { id = lotId }));
        }