20 lines
465 B
C#
Raw Normal View History

2016-10-17 20:10:18 -07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Microsoft.eShopOnContainers.Services.Basket.API.Model
{
public class CustomerBasket
{
public string BuyerId { get; set; }
public List<BasketItem> Items { get; set; }
2016-10-17 20:10:18 -07:00
public CustomerBasket(string customerId)
2016-10-17 20:10:18 -07:00
{
BuyerId = customerId;
Items = new List<Model.BasketItem>();
2016-10-17 20:10:18 -07:00
}
}
}