public IActionResult Post([FromBody] Movie movie)
 {
     movie = _store.Create(movie);
     return(new ObjectResult(movie));
 }