public CustomerEntity Update(Guid customerId, [FromBody] CustomerEntity shipperEntity) { return(shipperService.Update(customerId, shipperEntity)); }
public CustomerEntity Create([FromBody] CustomerEntity shipperEntity) { return(shipperService.Create(shipperEntity)); }