Large commit

This commit is contained in:
omair saleh
2021-08-16 08:59:26 +08:00
parent e2874f7199
commit d8c767c670
260 changed files with 4657 additions and 2960 deletions
@@ -0,0 +1,45 @@
<?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;
}
}