mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-21 13:34:08 +00:00
38 lines
838 B
PHP
38 lines
838 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\PackingLists\DataTransferObjects;
|
|
|
|
use App\Classes\General\Interfaces\DataTransferObject;
|
|
|
|
class PackingListObject implements DataTransferObject
|
|
{
|
|
|
|
private $packingListId;
|
|
|
|
private $containerReference;
|
|
|
|
private $containerType;
|
|
|
|
public function __construct(int $packingListId, ?string $containerReference, int $containerType)
|
|
{
|
|
$this->packingListId = $packingListId;
|
|
$this->containerReference = $containerReference;
|
|
$this->containerType = $containerType
|
|
}
|
|
|
|
public function getPackingListId(): int
|
|
{
|
|
return $this->packingListId;
|
|
}
|
|
|
|
public function getContainerReference(): ?string
|
|
{
|
|
return $this->containerReference;
|
|
}
|
|
|
|
public function getContainerType(): int
|
|
{
|
|
return $this->containerType;
|
|
}
|
|
}
|