I am having trouble setting up these classes.
I need to set up a customer collection class that has one function GetCustomer(ByVal customerNumber As Integer) As Customer
The customer class reads a file and returns 5 fields and x number of records.
My question is do I set up the 5 properties(fields) in the Customer class and if there are 10 records that match how do I return the customer object to the customer collection class.
I don’t care about exact syntax but could someone show me how these 2 classes should look?