dbmsv2/app/Interfaces/Equipment/ServerPartInterface.php
2025-09-22 17:41:40 +09:00

15 lines
449 B
PHP

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