public IActionResult Index()
        {
            var model = _movies.GetAll();

            return(View(model));
        }