示例#1
0
文件: Session.cs 项目: top501/DVTK-1
 /// <summary>
 /// Should be called by specialisation sub-class from the end of constructor.
 /// </summary>
 /// <remarks>
 /// Precondition: m_MBaseSession should have been set by sub-class.
 /// </remarks>
 virtual internal void _Initialize()
 {
     this.m_definitionManagement = new DefinitionManagement(this.m_MBaseSession);
     this.m_dvtSystemSettings    = new DvtSystemSettings(this.m_MBaseSession);
     this.m_sutSystemSettings    = new SutSystemSettings(this.m_MBaseSession);
     this.m_securitySettings     = new SecuritySettings(this.m_MBaseSession);
     //
     // Apply current date.
     //
     this.Date = System.DateTime.Now;
 }
示例#2
0
文件: Session.cs 项目: ewcasas/DVTK
 /// <summary>
 /// Should be called by specialisation sub-class from the end of constructor. 
 /// </summary>
 /// <remarks>
 /// Precondition: m_MBaseSession should have been set by sub-class.
 /// </remarks>
 internal virtual void _Initialize()
 {
     this.m_definitionManagement = new DefinitionManagement(this.m_MBaseSession);
     this.m_dvtSystemSettings = new DvtSystemSettings(this.m_MBaseSession);
     this.m_sutSystemSettings = new SutSystemSettings(this.m_MBaseSession);
     this.m_securitySettings = new SecuritySettings(this.m_MBaseSession);
     //
     // Apply current date.
     //
     this.Date = System.DateTime.Now;
 }