dbmsv2/app/Interfaces/Equipment/ServerInterface.php
2025-09-22 10:32:24 +09:00

13 lines
405 B
PHP

<?php
namespace App\Interfaces\Equipment;
use App\Entities\Equipment\ServerEntity;
interface ServerInterface extends EquipmentInterface
{
public function setServer(ServerPartEntity $serverPartEntity): ServerPartEntity;
public function modifServerPart(ServerPartEntity $serverPartEntity): ServerPartEntity;
public function deleteServerPart(ServerPartEntity $serverPartEntity): ServerPartEntity;
}