コード例 #1
0
 public IActionResult DeleteBookReview(int bookId, int userId)
 {
     try {
         _reviewsService.DeleteUsersBookReview(userId, bookId);
         return(NoContent());
     } catch (NotFoundException e) {
         return(NotFound(e.Message));
     }
 }