20 lines
		
	
	
		
			459 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			459 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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; } 
 | |
| 
 | |
|         public CustomerBasket(string customerId)
 | |
|         {
 | |
|             BuyerId = customerId;
 | |
|             Items = new List<BasketItem>();
 | |
|         }
 | |
|     }
 | |
| }
 |