Ejemplo n.º 1
0
 public GenListContainer(AbstractGenCollection <T> products)
 {
     for (int i = 0; i < products.Length; i++)
     {
         Add(products[i]);
     }
 }
Ejemplo n.º 2
0
 public void Add(AbstractGenCollection <T> products)
 {
     for (int i = 0; i < products.Length; i++)
     {
         Add(products[i]);
     }
 }
Ejemplo n.º 3
0
 public GenContainer(AbstractGenCollection <T> products)
 {
     Add(products);
 }