namespace Nop.Core.Infrastructure; /// /// Provides access to all "singletons" stored by . /// public partial class BaseSingleton { static BaseSingleton() { AllSingletons = new Dictionary(); } /// /// Dictionary of type to singleton instances. /// public static IDictionary AllSingletons { get; } }