Exemple #1
0
 public PropModeTreeMng(PropagationModelCollection propModelCollection, PropagationModelLoadManager propationModelMng, PropModelTreeUserControl propModelTree, IBaseService iBaseService)
 {
     this.m_PropModelCollection = propModelCollection;
     this.m_PropationModelMng = propationModelMng;
     this.m_PropModelTree = propModelTree;
     this.m_IBaseService = iBaseService;
 }
 private void LoadModelManager()
 {
     this.m_PropModelCollection = new PropagationModelCollection(this.applicationContext);
     this.m_PropModelCollection.PropationModelMng = this.m_PropMng;
     this.propModelTreeUserControl = new PropModelTreeUserControl(this.applicationContext);
     this.m_ModelsMngr = new PropModeTreeMng(this.m_PropModelCollection, this.m_PropMng, this.propModelTreeUserControl, this.applicationContext);
     if (null != this.m_PropModelCategoryList)
     {
         this.m_ModelsMngr.PropModelCategoryList = this.m_PropModelCategoryList;
     }
     this.m_ModelsMngr.Initialize();
 }