public async Task <ActionResult <int> > Incluir(Contato contato) { try { return(Ok(await _service.Incluir(contato))); } catch (Exception e) { throw e; } }