private function getAccount($balance)
 {
     $account = new Account();
     $account->setBalance($balance);
     return $account;
 }