Exemplo n.º 1
0
 public void Insert(int index, Product prod)
 {
     List.Insert(index, prod);
 }
Exemplo n.º 2
0
 public void Remove(Product prod)
 {
     List.Remove(prod);
 }
Exemplo n.º 3
0
 public void Add(Product prod)
 {
     List.Add(prod);
 }