Generation

generate functionFri, 02 Dec 2022

select all from Accounts where CustomerID is equal to the value inputted by user in text file

public List<Account> GetAccounts(string customerID) { return _accounts.Where(a => a.CustomerID == customerID).ToList(); }

Questions about programming?Chat with your personal AI assistant