Exemplo n.º 1
0
 public IActionResult Put(int id, [FromBody] AgendamentoUpdateDto dto)
 {
     _business.Update(id, dto);
     return(Ok(true));
 }