Exemplo n.º 1
0
        public void TestQuerySectors()
        {
            var sectors = _service.QuerySectors(113, 114, 22, 23);

            Assert.AreEqual(sectors.Count(), 6);
        }
Exemplo n.º 2
0
 public IEnumerable <SectorView> Get(int eNodebId)
 {
     return(_service.QuerySectors(eNodebId));
 }
Exemplo n.º 3
0
 public IEnumerable <SectorView> Get(double west, double east, double south, double north)
 {
     return(_service.QuerySectors(west, east, south, north));
 }