예제 #1
0
 public IActionResult Put([FromRoute] int id, [FromBody] Marca input)
 {
     return(Ok(_marcaNegocio.Alterar(id, input)));
 }