public async Task <Movie> AddMovie([FromBody] Movie movie) { var result = await moviesRepository.AddMovieAsync(movie); return(result); }