public void addCash(string label, double price, double tax) { double toCashbox = price + (tax / 100) * price; cashbox.addToCash(price, tax); CashboxForm form = new CashboxForm(label, toCashbox); form.ShowDialog(); }