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 IOrderApiClient { Task GetOrderDraftFromBasket(BasketData basket); } }