Files
portal/app/Classes/Modules/PackingLists/DataTransferObjects/ContainerObject.php
T
omair saleh d8c767c670 Large commit
2021-08-16 08:59:43 +08:00

46 lines
1.0 KiB
PHP

<?php
namespace App\Classes\Modules\PackingLists\DataTransferObjects;
use App\Classes\General\Interfaces\DataTransferObject;
class ContainerObject 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;
}
}