public IActionResult OnGet(int Id) { Pelicula = _peliculaRepository.GetById(Id); if (Pelicula == null) { return(NotFound()); } return(Page()); }