dbmsv2/app/Interfaces/Equipment/ServerPartInterface.php
2025-09-19 19:48:28 +09:00

13 lines
493 B
PHP

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