示例#1
0
 public void Insert(int index, Product prod)
 {
     List.Insert(index, prod);
 }
示例#2
0
 public void Remove(Product prod)
 {
     List.Remove(prod);
 }
示例#3
0
 public void Add(Product prod)
 {
     List.Add(prod);
 }