public void Put(int contatoId, [FromBody] ContatoModel contato) { try { ContatoService.Put(contatoId, contato); } catch (Exception) { throw; } }