Group: Forum Members
Posts: 2K,
Visits: 6.6K
|
The basic architecture allows for BOs to be loosely coupled to the data source. I.e. this allows you to hot swap datasources on the fly as needed (like you might do if you provide online/offline data access or if you have some sort of fall back database server). Also, this allows for many BOs to share the same data source. The datasource encapsulates the connection info, while the BO encapsulates data access and business rules.
Is that making more sense?
|