WIP - Order steps & remaining APIs

This commit is contained in:
Fairuz
2021-07-24 11:39:40 +08:00
parent 1281990b08
commit 7ae581300d
46 changed files with 1379 additions and 218 deletions
@@ -0,0 +1,45 @@
<?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(): int
{
return $this->sealReference;
}
}