dbmsv2/app/Interfaces/Equipment/ServerPartInterface.php
2025-09-20 15:33:47 +09:00

13 lines
421 B
PHP

<?php
namespace App\Interfaces\Equipment;
use App\Entities\Equipment\ServerPartEntity;
interface ServerPartInterface extends EquipmentInterface
{
public function createServerPart(ServerPartEntity $serverPartEntity): ServerPartEntity;
public function modifyServerPart(ServerPartEntity $serverPartEntity): ServerPartEntity;
public function deleteServerPart(ServerPartEntity $serverPartEntity): ServerPartEntity;
}