public async Task <IActionResult> GetProductInfo(string customerEmail)
        {
            var result = await _service.GetWishListWithProductInfoAsync(customerEmail);

            return(new OperationActionResult(result));
        }