Пример #1
0
 public NetSimulationInterface(IBaseService provider, CollectionsModel model)
 {
     this.m_provider = provider;
     this.m_SiteCol = model.SiteColl;
     this.m_CellCol = model.TranceiverColl;
     this.m_CarrierCollection = model.LTECellColl;
 }
Пример #2
0
 public AdvAlgParamFormEditor(LTECellCollection carrierColl, LteAlgParam param, string freBandName, string carrierName)
 {
     this.m_OriParam = param;
     this.m_Param = (LteAlgParam) param.Clone();
     this.m_FreBandName = freBandName;
     this.m_CarrierName = carrierName;
     this.m_CarrierColl = carrierColl;
 }
Пример #3
0
 private LTECellCollection m_LteCellCollection;//add by lw 3.31
 public RelayNodeDesc(CollectionsModel collModel, RelayNode relayNode, GeoInfoObserver geoInfo)
 {
     this.m_CollectionsModel = collModel;
     this.m_Entity = relayNode;
     this.m_RNCollection = collModel.RNColl;
     this.m_GeoInfo = geoInfo;
     this.m_BtsCollection = collModel.BtsEquipColl;
     this.m_LteCellCollection = collModel.LTECellColl;//add by lw 3.31
 }
Пример #4
0
 public NetTrafficInterface(IBaseService baseService, CollectionsModel model)
 {
     this.baseService = baseService;
     this.m_CellCol = model.TranceiverColl;
     this.m_CarrierCollection = model.LTECellColl;
     this.m_FreBandDic = new Dictionary<NetWorkType, BaseCollection<FrequencyBand, FreDealedArgs>>();
     this.m_FreBandDic.Add(NetWorkType.LTE, model.LteFreBandCol);
     this.m_FreBandDic.Add(NetWorkType.GSM, model.GSMFreBandCol);
     this.m_FreBandDic.Add(NetWorkType.CDMA, model.CDMAFreBandColl);
     this.m_FreBandDic.Add(NetWorkType.TDSCDMA, model.TDFreBandColl);
     this.m_FreBandDic.Add(NetWorkType.UMTS, model.UMTSFreBandColl);
 }
Пример #5
0
 public LTECellCollProvider(LTECellCollection cellColl)
 {
     this.m_cellColl = cellColl;
 }