コード例 #1
0
        public IActionResult Get()
        {
            var lista = banco.Get();

            if (lista.Count != 0)
            {
                return(Ok(lista));
            }
            else
            {
                return(NotFound("A lista de presenças está vazia"));
            }
        }