14 lines
367 B
C#
14 lines
367 B
C#
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<OrderData> GetOrderDraftFromBasket(BasketData basket);
|
|
}
|
|
}
|