示例#1
0
 public ShoppingCart(string shoppingCartId, ObservableCollection <ProductInCart> products, Coupon coupon, DateTime dateRegistered)
 {
     this.shoppingCartId = shoppingCartId;
     this.products       = products;
     this.coupon         = coupon;
     this.dateRegistered = dateRegistered;
 }