コード例 #1
0
        public ActionResult <List <Restaurant> > GetByTime(string time)
        {
            var restaurant = _restaurantService.GetByTime(time);

            if (restaurant == null)
            {
                return(NotFound());
            }

            return(restaurant);
        }