public bool CheckIfMovieExists(Movie movie)
        {
            var movieExists = false;

            _repo.AddApiData(movie);

            if (movie.Poster != null)
            {
                movieExists = true;
            }

            return(movieExists);
        }