public ActionResult <bool> Post([FromBody] Show newShow)
        {
            repo.Create(newShow);

            return(true);
        }