One of the easiest examples of using shared services is when we want to store some data from a given page of our application, and then get that data again but from another page.
One option could be to send that data as a parameter (for instance, if one page calls the other one) but if we want to us...