using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Microsoft.eShopOnContainers.Services.Basket.API.Model { public interface IBasketRepository { Task GetBasket(string customerId); Task UpdateBasket(CustomerBasket basket); Task DeleteBasket(string id); } }