2018-02-15 17:30:39 +01:00
|
|
|
|
using Microsoft.eShopOnContainers.Mobile.Shopping.HttpAggregator.Models;
|
2018-01-29 15:58:08 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-02-15 17:30:39 +01:00
|
|
|
|
namespace Microsoft.eShopOnContainers.Mobile.Shopping.HttpAggregator.Services
|
2018-01-29 15:58:08 +00:00
|
|
|
|
{
|
|
|
|
|
public interface IBasketService
|
|
|
|
|
{
|
|
|
|
|
Task<BasketData> GetById(string id);
|
2018-01-31 15:35:40 +00:00
|
|
|
|
Task Update(BasketData currentBasket);
|
2018-02-01 14:04:20 +00:00
|
|
|
|
|
2018-01-29 15:58:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|