override public void AddCurrency(string name, float price)
 {
     currencies.Add(ACurrency.CreateCurrency(name, price));
 }
 public void AddCurrency(ACurrency c)
 {
     currencies.Add(c);
 }