Facade controller, is it efficient?
Posted
by Berlioz
on Stack Overflow
See other posts from Stack Overflow
or by Berlioz
Published on 2010-03-31T16:08:28Z
Indexed on
2010/03/31
16:13 UTC
Read the original article
Hit count: 282
Using a facade controller pattern in .net. It seems as if though it is not efficient BECAUSE, for every event that happens in a domain object(Sales, Register, Schedule, Car) it has to be subscribed to by the controller(use case controller) and then the controller in turn has to duplicate that same event to make it available for the presentation, so that the presentation can show it to the user. Does this make sense? Please comment!
© Stack Overflow or respective owner