I am retrieving data via SignalR and keeping the most recent data returned in a dictionary that exists in my WebServices class.
I'd like to be able to have a pointer to this dictionary and be able to use the data in many other classes / viewcontrollers.
I want to avoid creating an instance of my WebServices class everywhere I use the data.
How can I accomplish this?