protected function showCreditorBankAccount(CreditorBankAccount $account)
 {
     $output = $this->output;
     $output->writeln("Creditor Bank Account Id: " . $account->getId());
     $output->writeln("Account holder name: " . $account->getAccountHolderName());
     $output->writeln("Account number ending: " . $account->getAccountNumberEnding());
     $output->writeln("Country code: " . $account->getCountryCode());
     $output->writeln("Currency: " . $account->getCurrency());
     $output->writeln("Bank Name: " . $account->getBankName());
     $output->writeln("------------");
 }