Example #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;
 }
Example #2
0
 public void Initialize()
 {
     if (!m_Initialized)
     {
         m_Initialized = true;
         m_PropMng = new PropagationModelLoadManager();
         LoadModelManager();
         m_IPTPLossCalcMethod = new PathLosCalcMethod(applicationContext);
         m_BackhaulPLCalc = new BackhaulPLCalc(applicationContext);
         m_PLCalcDataMngr = new PLCalcDataMngr(applicationContext);
         m_GetRelayUEPathLoss = new GetRelayUEPathLoss(applicationContext);
         m_TreeNodeOpeList.Add(m_ModelsMngr);
         m_PLCalcDataVstr = new Huawei.UNet.Propa.DataManager.PLCalcDataVstr(applicationContext);
         m_PLCalcDataVstr.PropModelCollection = m_PropModelCollection;
         m_GisDataProvider = ServiceHelper.Lookup<IDataProvider>(applicationContext);
         m_GeoDataObserver = new GeoDataObserver(m_GisDataProvider);
     }
 }