Пример #1
0
        // Change so that each service is created on start and new service not created for each request
        public IndexedLocationResponse ReadIndexedLocation()
        {
            var request = new IndexedLocationRequest()
            {
            };
            var response = new IndexedLocationService.IndexedLocation().ReadIndexedLocation();

            return(response);
        }
Пример #2
0
        public IndexedLocationResponse UpdateIndexedLocation(string indexedLocation)
        {
            var request = new IndexedLocationRequest()
            {
                IndexedLocation = indexedLocation
            };
            var response = new IndexedLocationService.IndexedLocation().UpdateIndexedLocation(request);

            return(response);
        }