public void Should_ReturnTrue_WhenCheckingIfTheGetByIdTestMovieExists()
        {
            //Arrange
            //GetByIdTest Movie is in the database

            //Act
            bool MovieExists = movieLogic.DoesThisMovieExist("Exists");

            //Assert
            Assert.True(MovieExists);
        }