public void TestQuerySectors() { var sectors = _service.QuerySectors(113, 114, 22, 23); Assert.AreEqual(sectors.Count(), 6); }
public IEnumerable <SectorView> Get(int eNodebId) { return(_service.QuerySectors(eNodebId)); }
public IEnumerable <SectorView> Get(double west, double east, double south, double north) { return(_service.QuerySectors(west, east, south, north)); }