public IActionResult GetItemTotalPrice(int userId)
        {
            var totalPrice = _itemCategoryRepo.GetItemTotalPrice(userId);

            return(Ok(totalPrice));
        }