mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-21 13:34:08 +00:00
WIP - Order steps & remaining APIs
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user