mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-24 23:14:04 +00:00
WIP - Order steps & remaining APIs
This commit is contained in:
+45
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes\Modules\ContainerPackingLists\DataTransferObjects;
|
||||
|
||||
use App\Classes\General\Interfaces\DataTransferObject;
|
||||
|
||||
class ContainerPackingListObject implements DataTransferObject
|
||||
{
|
||||
|
||||
private $packingListId;
|
||||
|
||||
private $containerReference;
|
||||
|
||||
private $containerType;
|
||||
|
||||
private $sealReference;
|
||||
|
||||
public function __construct(int $packingListId, ?string $containerReference, int $containerType, ?String $sealReference)
|
||||
{
|
||||
$this->packingListId = $packingListId;
|
||||
$this->containerReference = $containerReference;
|
||||
$this->containerType = $containerType;
|
||||
$this->sealReference = $sealReference;
|
||||
}
|
||||
|
||||
public function getPackingListId(): int
|
||||
{
|
||||
return $this->packingListId;
|
||||
}
|
||||
|
||||
public function getContainerReference(): ?string
|
||||
{
|
||||
return $this->containerReference;
|
||||
}
|
||||
|
||||
public function getContainerType(): int
|
||||
{
|
||||
return $this->containerType;
|
||||
}
|
||||
|
||||
public function getSealReference(): int
|
||||
{
|
||||
return $this->sealReference;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user