dbmsv2/app/Services/Service/ServicePart.php
2025-09-19 16:50:53 +09:00

23 lines
571 B
PHP

<?php
namespace App\Services\Service;
use App\Entities\Equipment\ServerPartEntity;
use App\Interfaces\Equipment\ServerPartInterface;
use App\Services\Customer\ServiceService;
class ServicePart extends ServiceService implements ServerPartInterface
{
public function __construct()
{
parent::__construct();
}
//서버연결정보용 등록
public function setServerPart(string $action, ServerPartEntity $serverPartEntity, array $serverPartDatas = []): ServerPartEntity
{
$formDatas = [];
return $serverPartEntity;
}
}