Files
portal/app/Classes/Modules/PackingLists/DataTransferObjects/ContainerPackingListObject.php
T
2021-07-23 16:14:54 +08:00

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