16 lines
397 B
C#
16 lines
397 B
C#
using Microsoft.eShopOnContainers.Mobile.Shopping.HttpAggregator.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Microsoft.eShopOnContainers.Mobile.Shopping.HttpAggregator.Services
|
|
{
|
|
public interface IBasketService
|
|
{
|
|
Task<BasketData> GetById(string id);
|
|
Task Update(BasketData currentBasket);
|
|
|
|
}
|
|
}
|