Is there a way to share data between services in AngularJS?
Use case: data aggregation from different services
For example I want a service1 that loads some data from a REST Service. Then another service2 adds additional data to the service1 data from another REST API to create a data aggregation service.
I basically want to separate the services based on the APIs that they use, but still have a service that holds all the data in the end.