public async Task <ActionResult> DeleteWish(int bookId)
        {
            await _wishListService.RemoveWishAsync(bookId);

            return(Ok());
        }