public NotificationService()
 {
     this._processed    = new List <int>();
     this._timer        = new Timer();
     this.Logger        = new MongoDbLogger();
     this.Configuration = XNotifyConfigSection.GetSection();
     this.Name          = Configuration.Name;
     this.Description   = Configuration.Description;
 }
        public void XNotify_Configuration_Section_Found()
        {
            var config = XNotifyConfigSection.GetSection();

            Assert.That(config != null);
        }