public IActionResult Index()
        {
            var model = _filmeRepository.Consultar();

            return(View(model));
        }