puremvc
|
 |
« Reply #1 on: May 22, 2009, 12:25:48 » |
|
The idea of a StageProxy is a little whacky in an MVC sense. The Stage is a View tier entity, Proxies are Model tier entities.
If you wanted a ServiceLocator you could make one, but generally, we write the services directly into the Proxies that need them. The Proxies wrap the service and associated data. Essentially, the Model ends up being the ServiceLocator, because you retrieve the named Proxy from the service and make calls against it.
-=Cliff>
|