コード例 #1
0
 public CustomerEntity Update(Guid customerId, [FromBody] CustomerEntity shipperEntity)
 {
     return(shipperService.Update(customerId, shipperEntity));
 }
コード例 #2
0
 public CustomerEntity Create([FromBody] CustomerEntity shipperEntity)
 {
     return(shipperService.Create(shipperEntity));
 }