mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
46 lines
1.0 KiB
PHP
46 lines
1.0 KiB
PHP
<?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(): ?string
|
|
{
|
|
return $this->sealReference;
|
|
}
|
|
}
|