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