So I just need help wrapping my head around this assignment. I'm having a hard time deciphering what is needed. I've messaged my instructor but I'm still confused so I figured I would reach out here. I don't need help with the coding just what I need to code.
You will practice using a layered approach to building software.
Create an application that implements a business layer and a database access layer.
The application should have a GUI that displays customer data.
The GUI will use the business layer to perform its actions.
Create methods to return the number of customers and a list of customer names.
Create a database object that also returns the number of customers and a list of customer last names.
The object must have a constructor that accepts a connection string.
Remember that the methods return raw data, not a table structure.
Create a business layer object to do the actual interaction with the data access layer.
All of the interactions with the data layer are performed within the business layer.