13 lines
334 B
C#
Raw Normal View History

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
{
Task<BasketData> GetByIdAsync(string id);
2018-02-27 14:32:25 +01:00
Task UpdateAsync(BasketData currentBasket);
2018-02-27 14:32:25 +01:00
}
}