2018-02-27 14:32:25 +01:00
|
|
|
|
using Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator.Models;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.eShopOnContainers.Web.Shopping.HttpAggregator.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IBasketService
|
|
|
|
|
{
|
2018-11-15 12:50:37 +01:00
|
|
|
|
Task<BasketData> GetByIdAsync(string id);
|
2018-02-27 14:32:25 +01:00
|
|
|
|
|
2018-11-15 12:50:37 +01:00
|
|
|
|
Task UpdateAsync(BasketData currentBasket);
|
2018-02-27 14:32:25 +01:00
|
|
|
|
}
|
|
|
|
|
}
|