public static CreateShipmentImageDto ToCreateShipmentImage(this ShipmentImageStateDtoWrapper state)
 {
     return(state.ToCreateShipmentImage <CreateShipmentImageDto>());
 }
 public static RemoveShipmentImageDto ToRemoveShipmentImage(this ShipmentImageStateDtoWrapper state)
 {
     return(state.ToRemoveShipmentImage <RemoveShipmentImageDto>());
 }
 public static MergePatchShipmentImageDto ToMergePatchShipmentImage(this ShipmentImageStateDtoWrapper state)
 {
     return(state.ToMergePatchShipmentImage <MergePatchShipmentImageDto>());
 }
 public static IShipmentImageCommand ToCreateOrMergePatchShipmentImage(this ShipmentImageStateDtoWrapper state)
 {
     return(state.ToCreateOrMergePatchShipmentImage <CreateShipmentImageDto, MergePatchShipmentImageDto>());
 }