Ejemplo n.º 1
0
        public async System.Threading.Tasks.Task <IActionResult> Get()
        {
            List <Filme> filmes = await repositorio.Get();

            if (filmes == null)
            {
                NotFound();
            }

            return(Ok(filmes));
        }