public Money subtract(Money m) { return new Money(this.currency, this.getAmount() - m.getAmount()); }
public Money add(Money m) { return new Money(this.currency, this.getAmount() + m.getAmount()); }