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