Inheritance: System.MarshalByRefObject
Exemplo n.º 1
0
 public TM_Xml_Database()
 {
     Current = this;
     Events  = new Events_TM_Xml_Database(this);
     GuidanceExplorers_XmlFormat = new Dictionary <Guid, guidanceExplorer>();
     Cached_GuidanceItems        = new Dictionary <Guid, TeamMentor_Article>();
     VirtualArticles             = new Dictionary <Guid, VirtualArticleAction>();
 }
Exemplo n.º 2
0
 public TM_Xml_Database()
 {
     Current = this;
     Events                      = new Events_TM_Xml_Database(this);
     GuidanceExplorers_XmlFormat = new Dictionary<Guid,guidanceExplorer>();
     Cached_GuidanceItems        = new Dictionary<Guid,TeamMentor_Article>();
     VirtualArticles             = new Dictionary<Guid,VirtualArticleAction>();
 }
Exemplo n.º 3
0
 public void TM_Events_TM_Xml_Database_Ctor()
 {
     var tmEvents = new Events_TM_Xml_Database(tmDatabase);
     Assert.NotNull (tmEvents);
     Assert.AreEqual(tmEvents.Target, tmDatabase);
     Assert.NotNull (tmEvents.Before_Setup);
     Assert.NotNull (tmEvents.After_Setup);
     Assert.NotNull (tmEvents.After_Set_Default_Values);
     Assert.NotNull (tmEvents.After_Set_Path_XmlLibraries);
     Assert.NotNull (tmEvents.After_Load_UserData);
     Assert.NotNull (tmEvents.After_Load_SiteData);
     Assert.NotNull (tmEvents.After_Load_Libraries);
 }