using Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator.Models; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator.Services { public interface IBasketService { Task GetById(string id); Task Update(BasketData currentBasket); } }