From 3a3e45bdd1bc5ed0404016ff03ae25e4754c055d Mon Sep 17 00:00:00 2001 From: fcdeveloper00 Date: Wed, 2 Jul 2025 01:10:45 -0700 Subject: [PATCH] Update BankCustomer.cs at LP5_file.../Files_M2/Solution/Models folder Hi, It seems the word 'account' should be replaced with 'customer'. Please check it. --- .../Files_M2/Solution/Models/BankCustomer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DownloadableCodeProjects/LP5_file-io-json-async/Files_M2/Solution/Models/BankCustomer.cs b/DownloadableCodeProjects/LP5_file-io-json-async/Files_M2/Solution/Models/BankCustomer.cs index 3f34bef..2d43994 100644 --- a/DownloadableCodeProjects/LP5_file-io-json-async/Files_M2/Solution/Models/BankCustomer.cs +++ b/DownloadableCodeProjects/LP5_file-io-json-async/Files_M2/Solution/Models/BankCustomer.cs @@ -40,7 +40,7 @@ public BankCustomer(string firstName, string lastName) _accounts = new List(); } - // 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 @@ -65,4 +65,4 @@ public BankCustomer(BankCustomer existingCustomer) this.CustomerId = (s_nextCustomerId++).ToString("D10"); _accounts = new List(existingCustomer._accounts); } -} \ No newline at end of file +}