public void Insert(int index, Product prod)
 {
     List.Insert(index, prod);
 }
 public void Remove(Product prod)
 {
     List.Remove(prod);
 }
 public void Add(Product prod)
 {
     List.Add(prod);
 }