21 lines
448 B
PHP
21 lines
448 B
PHP
<?php
|
|
|
|
namespace App\Processors\Customer;
|
|
|
|
use App\Entities\Customer\ServiceEntity;
|
|
use App\Entities\Equipment\ServerEntity;
|
|
use App\Entities\PaymentEntity;
|
|
|
|
class ServiceContext
|
|
{
|
|
public array $formDatas = [];
|
|
public ?ServiceEntity $serviceEntity = null;
|
|
public ?ServerEntity $serverEntity = null;
|
|
public ?PaymentEntity $paymentEntity = null;
|
|
|
|
public function __construct(array $formDatas)
|
|
{
|
|
$this->formDatas = $formDatas;
|
|
}
|
|
}
|