Ejemplo n.º 1
0
 private IQuestionManager CreateQuestionMgr(IConfigSetting setting)
 {
     if (this.questionMgr == null)
     {
         questionMgr = (IQuestionManager)this.setting.Property["type"].ToObject(typeof(IQuestionManager), true);
         questionMgr.Init(setting);
     }
     return this.questionMgr;
 }