public List <LteNeighborCell> QueryCells(int cellId, byte sectorId)
 {
     return(_repository.GetAllList(x => x.CellId == cellId && x.SectorId == sectorId));
 }
 public List <LteNeighborCell> QueryCells(int cellId, byte sectorId)
 {
     return(_repository.GetAllList(cellId, sectorId));
 }