Example #1
0
        public IEnumerable <AgpsCoverageView> Get(DateTime begin, DateTime end, string district,
                                                  string town)
        {
            var boundaries = _service.QueryTownBoundaries(district, town);

            return(boundaries == null
                ? new List <AgpsCoverageView>()
                : _agpsService.QueryUnicomCoverageViews(begin, end, boundaries));
        }