Deposits an amount of money to the bank account.
float $balance:
BankAccountException
public function depositMoney($balance) { $this ->setBalance($this ->getBalance() + $balance); return $this ->getBalance(); }