Possible Duplicate:
What's Alternative to Singleton
If I am not allowed to use the Singleton pattern because it is not good OOP, what are my options? I often have a lot of stuff that needs quick access. If I use a Singleton I am told it is not good OOP, and if I reference the stuff I get a lot of classes with to much references.
Any idéas?
Consider using Inversion of Control via Dependency Injection. This can often be used in many places where people reach for Singletons.