示例#1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public CMSController()
 {
     DBBase = new DBBaseFunctions();
     _cmsConfiguration = new CMSConfigurationsClass(this,DBBase);
 }
示例#2
0
 public CMSConfigurationsClass(Controller ControllerBase,DBBaseFunctions DBBase)
 {
     this.BaseController = ControllerBase;
     this.StatInfo = new StatisticsInfo(); // Create statistics info class
     this.DBBaseSample=DBBase;
 }