public IActionResult Get() { var lista = banco.Get(); if (lista.Count != 0) { return(Ok(lista)); } else { return(NoContent()); } }