dbmsv3/app/Interfaces/Equipment/ServerInterface.php
2025-10-30 13:51:10 +09:00

14 lines
423 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;
public function setAmount(ServerEntity $entity): ServerEntity;
}