public void Execute(string cartId)
        {
            if (cartId is null)
            {
                throw new ArgumentNullException(nameof(cartId));
            }

            _shoppingCartItemRepository.Clear(cartId);
        }