public void CreatePOShipGroup([FromBody] OrderShipGroupServiceCommandDtos.CreatePOShipGroupDto requestContent)
 {
     try {
         _orderShipGroupApplicationService.When(requestContent.ToCreatePOShipGroup());
     } catch (Exception ex) { var response = HttpServiceExceptionUtils.GetErrorHttpResponseMessage(ex); throw new HttpResponseException(response); }
 }
 public void CreatePOShipGroup([FromBody] OrderShipGroupServiceCommandDtos.CreatePOShipGroupDto requestContent)
 {
     _orderShipGroupApplicationService.When(requestContent.ToCreatePOShipGroup());
 }