posted 13 years ago
I'm trying to understand the architecture of the project that I'm now responsable.
Currently we have this architecture:
Manager:
And we are instructed, if had Busness Logic, to put them into CompanyFacade. But what I understand by facade it didn't implement Business. I'm correct? How can I implement the Business Logic in my architecture? I think that if i need some more complicated business logic that needs to comunicate itself with other classes I can create the CompanyBO and by the ManagerBean I call the Facade and it will call the other classes like CompanyBO or the entity Employee. Can you show me an example of how to do it correct?