public ActionResult <Usuario> Get(string id) { var usuario = _usuarioService.Get(id); if (usuario == null) { return(NotFound()); } return(usuario); }