|
|
|
Business-Logic Layer
This class is the middle layer of an application. It encapsulates business rules and decouples business logic from presentation details. It is in charge of talking to the Data-Access Layer.
ptii-061
|
|
|
Data-Access Layer
This class is an application layer that sits between the Business-Logic Layer and the database. It deals with the complexity of reading and writing data to the database and decouples the business logic layer from the database details.
ptii-062
|