コード例 #1
0
ファイル: GeoService.cs プロジェクト: ThinkBiscuit/GeoTest
 public object Get(GetBoundedCoords request)
 {
     var result = _geoRepository.GetBoundedCoords(request);
     return new { Success = result != null, Results = result };
 }
コード例 #2
0
ファイル: GeoService.cs プロジェクト: ThinkBiscuit/GeoTest
        public object Get(GetBoundedCoords request)
        {
            var result = _geoRepository.GetBoundedCoords(request);

            return(new { Success = result != null, Results = result });
        }