Esempio n. 1
0
 public CustomerEntity Update(Guid customerId, [FromBody] CustomerEntity shipperEntity)
 {
     return(shipperService.Update(customerId, shipperEntity));
 }
Esempio n. 2
0
 public CustomerEntity Create([FromBody] CustomerEntity shipperEntity)
 {
     return(shipperService.Create(shipperEntity));
 }