public async Task <ActionResult <IList <Contato> > > Lista(FiltroSpec filtro) { try { return(Ok(await _service.Lista(filtro))); } catch (Exception e) { throw e; } }