public IActionResult Get() { var shows = repo.All(); return(Ok(new { status = "success", message = $"Found {shows.Count()} results", data = new { shows = shows } })); }