using System.Collections.Generic; using System.Threading.Tasks; namespace Microsoft.eShopOnContainers.Services.Basket.API.Model { public interface IBasketRepository { Task GetBasketAsync(string customerId); Task> GetUsersAsync(); Task UpdateBasketAsync(CustomerBasket basket); Task DeleteBasketAsync(string id); } }