Example #1
0
        public ActionResult <Show> GetByID(int id)
        {
            var show = _showService.Get(id);

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

            return(show);
        }