13 lines
334 B
C#
13 lines
334 B
C#
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);
|
|
|
|
Task UpdateAsync(BasketData currentBasket);
|
|
}
|
|
}
|