Esempio n. 1
0
 public void Add(ShoppingCartItem item)
 {
     if (item == null)
     {
         throw new ArgumentNullException(nameof(item));
     }
     ContentsInternal.Add(item);
 }
Esempio n. 2
0
 public void Remove(ShoppingCartItem item)
 {
     ContentsInternal.Remove(item);
 }