public async Task <ActionResult <List <Contato> > > Busca(string texto) { try { return(Ok(await _service.Busca(texto))); } catch (Exception e) { throw e; } }