dbmsv3/app/Interfaces/Equipment/ServerInterface.php
2025-10-01 14:03:52 +09:00

13 lines
446 B
PHP

<?php
namespace App\Interfaces\Equipment;
use App\Entities\Equipment\ServerEntity;
interface ServerInterface extends EquipmentInterface
{
public function setServer(ServerEntity $serverEntity, array $formDatas): ServerEntity;
public function changeServer(ServerEntity $oldServerEntity, ServerEntity $serverEntity, array $formDatas): ServerEntity;
public function unsetServer(ServerEntity $serverEntity, array $formDatas): ServerEntity;
}