2017-05-23 16:39:22 +03:00
|
|
|
|
using System.Collections.Generic;
|
2016-10-17 20:10:18 -07:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Basket.API.Model
|
|
|
|
|
{
|
|
|
|
|
public class CustomerBasket
|
|
|
|
|
{
|
2016-11-16 10:19:00 +01:00
|
|
|
|
public string BuyerId { get; set; }
|
|
|
|
|
public List<BasketItem> Items { get; set; }
|
2016-10-17 20:10:18 -07:00
|
|
|
|
|
2016-11-16 10:19:00 +01:00
|
|
|
|
public CustomerBasket(string customerId)
|
2016-10-17 20:10:18 -07:00
|
|
|
|
{
|
2016-11-16 10:19:00 +01:00
|
|
|
|
BuyerId = customerId;
|
|
|
|
|
Items = new List<Model.BasketItem>();
|
2016-10-17 20:10:18 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|