14 lines
378 B
C#
Raw Normal View History

2017-04-17 12:28:12 +02:00
using System.Collections.Generic;
2016-10-17 20:10:18 -07:00
using System.Threading.Tasks;
namespace Microsoft.eShopOnContainers.Services.Basket.API.Model
{
public interface IBasketRepository
{
Task<CustomerBasket> GetBasketAsync(string customerId);
IEnumerable<string> GetUsers();
Task<CustomerBasket> UpdateBasketAsync(CustomerBasket basket);
Task<bool> DeleteBasketAsync(string id);
}
2016-10-17 20:10:18 -07:00
}