I know that you're supposed to pass data between controllers via a service, but I don't know how to do it in this instance.
Assume you have ControllerA that has a method:
ControllerA.executePromise()
When the promise finishs I want to alert the service that it is done.
Then I want to alert ControllerB via the service that the promise from ControllerA is finished.
I know I can call a method after the promise finishes to tell the service that it is done, but how I can then instantly tell Controller B via the service that the promise is complete?