/// <summary>
        /// Performs initialization routines on the article manager.
        /// </summary>
        public static void Initialize()
        {
            // Hook up the data provider.
            _provider = new FakeArticleDataProvider();

            // Initialize the data provider.
            _provider.Initialize();
        }