dbmsv3/app/Interfaces/Equipment/ServerInterface.php
2025-10-27 17:15:47 +09:00

13 lines
358 B
PHP

<?php
namespace App\Interfaces\Equipment;
use App\Entities\Customer\ServiceEntity;
use App\Entities\Equipment\ServerEntity;
interface ServerInterface
{
public function attachToService(ServiceEntity $serviceEntity, string $serverinfo_uid, array $formDatas = []): ServerEntity;
public function detachFromService(string $serverinfo_uid): ServerEntity;
}