Beispiel #1
0
 private List<Transceiver> GetAllCellsUnderGroup(ICoverageInfo group)
 {
     List<Transceiver> list = new List<Transceiver>();
     foreach (Transceiver transceiver in group.IAcellList)
     {
         list.Add(transceiver);
     }
     return list;
 }
Beispiel #2
0
 private void LoadGroups(ICoverageInfo group)
 {
     this.AddGroups();
     this.m_GrpIdxBeforeChange = -1;
     if (group != null)
     {
         this.SetSelectedItem(group.Name);
         this.m_GrpIdxBeforeChange = this.cmBoxSelectGroup.SelectedIndex;
     }
 }