コード例 #1
0
        public RestaurantInformation GetResturantDetail([FromQuery] int RestaurantID)
        {
            RestaurantInformation resturantInformation = new RestaurantInformation();

            resturantInformation = business_Repo.GetResturantDetails(RestaurantID);
            return(resturantInformation);
        }