16 lines
397 B
C#
Raw Normal View History

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);
Task Update(BasketData currentBasket);
2018-01-29 15:58:08 +00:00
}
}