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,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Classes\Modules\PackingLists\DataTransferObjects;
|
||||
|
||||
use App\Classes\General\Interfaces\DataTransferObject;
|
||||
|
||||
class PackingListObject implements DataTransferObject
|
||||
{
|
||||
|
||||
private $packingListId;
|
||||
|
||||
private $packageId;
|
||||
|
||||
public function __construct(int $packingListId, int $packageId)
|
||||
{
|
||||
$this->packingListId = $packingListId;
|
||||
$this->packageId = $packageId;
|
||||
}
|
||||
|
||||
public function getPackingListId(): int
|
||||
{
|
||||
return $this->packingListId;
|
||||
}
|
||||
|
||||
public function getPackageId(): int
|
||||
{
|
||||
return $this->packageId;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user