Ejemplo n.º 1
0
 public void NewElement(string nameOfElement, int amount, ElementSpecifications specifications)
 {
     elements.Add(new Element(nameOfElement, amount, specifications));
 }
Ejemplo n.º 2
0
 public Element(String ElementName, int amount, ElementSpecifications elementspecification)
 {
     this.elementspecification = elementspecification;
     this.ElementName          = ElementName;
     this.amount = amount;
 }