Files
shipping-portal/app/Classes/Modules/ContainerPackingLists/DataTransferObjects/ContainerPackingListObject.php
T
2021-07-24 16:21:11 +08:00

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;
}
}