示例#1
0
 public IActionResult Put(string id, [FromBody] ShipmentDto value)
 {
     _service.Put(id, value);
     return(Ok());
 }