Example #1
0
        public static RssParserService GetInstance()
        {
            if (_instance == null)
            {
                _instance = new RssParserService();
            }

            return(_instance);
        }
Example #2
0
 private FeedManager()
 {
     _subscribedFeeds = new Dictionary <Guid, Feed>();
     _rssService      = new RssParserService();
     _dbContext       = new PersistentManager();
 }