Example #1
0
        // GET: api/Restaurant
        public async Task <IHttpActionResult> Get(string city = null)
        {
            var restaurants = await _restaurants.GetRestaurantsGroupedByCity(city);

            return(Ok(restaurants));
        }