WIP - Order steps & remaining APIs

This commit is contained in:
Fairuz
2021-07-23 16:14:54 +08:00
parent 1fe25476ce
commit d65b630560
19 changed files with 241 additions and 170 deletions
@@ -0,0 +1,37 @@
<?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;
}
}