Exemple #1
0
 public void removeProductItem(ProductItem item)
 {
     productItems.Remove(item);
 }
Exemple #2
0
 public void addProductItem(ProductItem newItem, ProductItem parent)
 {
     newItem.ParentItem = parent;
     productItems.Add(newItem);
 }