Exemplo n.º 1
0
        public async Task <List <ItemPlace> > GetNearByLocations(PlacesNearBySearchRequest filter)
        {
            List <ItemPlace> result = new List <ItemPlace>();

            try
            {
                result = await _apiRequest.RequestPlaces();
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }

            return(result);
        }