此方法无效
/**
* Outputs all details of all customers to the terminal window.
*/
public void getAllBorrowers()
{
int index = 0;
while(index < borrowers.size())
{
borrowers.get(index);
index++;
}
System.out.println("Number of borrowers: " + getNumberOfBorrowers());
}