dbmsv2/app/Interfaces/Equipment/ServerInterface.php
2025-09-29 16:34:07 +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;
}