public ActionResult <Show> GetByID(int id) { var show = _showService.Get(id); if (show == null) { return(NotFound()); } return(show); }