示例#1
0
 // PUT: api/Pessoa/5
 public void Put(int id, [FromBody] Pessoas value)
 {
     PessoasDAO.Update(value, id);
 }