public ActionResult <Show> InsertShow(Show show)
 {
     _showService.InsertShow(show);
     return(CreatedAtRoute(nameof(GetOneShow), new { id = show.Id }, show));
 }