public IActionResult Details(string id)
        {
            var model = _movies.GetDetailsById(id);

            return(View(model));
        }