public Movie Put(string id, [FromBody] Movie movie)
 {
     return(_repo.GetOneByIdAndUpdate(id, movie));
 }