Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public BankCustomer(string firstName, string lastName)
_accounts = new List<IBankAccount>();
}

// Constructor used to recover and restore an existing account from back up
// Constructor used to recover and restore an existing customer from back up
public BankCustomer(string firstName, string lastName, string customerId, Bank bank)
{
// Verify that the CustomerId isn't already in use
Expand All @@ -65,4 +65,4 @@ public BankCustomer(BankCustomer existingCustomer)
this.CustomerId = (s_nextCustomerId++).ToString("D10");
_accounts = new List<IBankAccount>(existingCustomer._accounts);
}
}
}