Layers, Interfaces and Mutability
Here's the full, minimally-edited question:
more ..."We are having a debate about the basic way the UI, Business Logic, and Data Access layers communicate.
My experience has been that the UI talks to the BizLogic, and the BizLogic maps between itself and the Data Access layer.. like this:
- ::
- UI -> BizLogic -> Data …