mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-21 13:34:08 +00:00
WIP - Order steps & remaining APIs
This commit is contained in:
+10
-2
@@ -13,11 +13,14 @@ class PackingListObject implements DataTransferObject
|
||||
|
||||
private $containerType;
|
||||
|
||||
public function __construct(int $packingListId, ?string $containerReference, int $containerType)
|
||||
private $sealReference;
|
||||
|
||||
public function __construct(int $packingListId, ?string $containerReference, int $containerType, ?String $sealReference)
|
||||
{
|
||||
$this->packingListId = $packingListId;
|
||||
$this->containerReference = $containerReference;
|
||||
$this->containerType = $containerType
|
||||
$this->containerType = $containerType;
|
||||
$this->sealReference = $sealReference;
|
||||
}
|
||||
|
||||
public function getPackingListId(): int
|
||||
@@ -34,4 +37,9 @@ class PackingListObject implements DataTransferObject
|
||||
{
|
||||
return $this->containerType;
|
||||
}
|
||||
|
||||
public function getSealReference(): int
|
||||
{
|
||||
return $this->sealReference;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user