Esempio n. 1
0
        public async Task <IActionResult> DeleteComment(long commentId)
        {
            await _commentAppService.DeleteComment(commentId);

            return(Ok());
        }