dbmsv3/app/Processors/Customer/Service/ServiceContext.php
2025-10-30 17:54:08 +09:00

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;
}
}