示例#1
0
 public MarcaViewModel Put(int id, [FromBody] MarcaViewModel marca)
 {
     marca.Id = id;
     return(Service.EditarMarca(marca));
 }