public string CreatePOShipment([FromBody] OrderShipGroupServiceCommandDtos.CreatePOShipmentDto requestContent)
 {
     try {
         return(_orderShipGroupApplicationService.When(requestContent.ToCreatePOShipment()));
     } catch (Exception ex) { var response = HttpServiceExceptionUtils.GetErrorHttpResponseMessage(ex); throw new HttpResponseException(response); }
 }
 public string CreatePOShipment([FromBody] OrderShipGroupServiceCommandDtos.CreatePOShipmentDto requestContent)
 {
     return(_orderShipGroupApplicationService.When(requestContent.ToCreatePOShipment()));
 }