// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 using System.Threading.Tasks; namespace cart.cartstore; public interface ICartStore { void Initialize(); Task AddItemAsync(string userId, string productId, int quantity); Task EmptyCartAsync(string userId); Task GetCartAsync(string userId); bool Ping(); }