dbmsv3/app/Interfaces/Equipment/ServerPartInterface.php
2025-10-30 13:51:10 +09:00

14 lines
417 B
PHP

<?php
namespace App\Interfaces\Equipment;
use App\Entities\Equipment\ServerEntity;
use App\Entities\Equipment\ServerPartEntity;
interface ServerPartInterface
{
public function attachToServer(ServerEntity $serverEntity, array $formDatas = []): void;
public function detachFromServer(ServerEntity $serverEntity): void;
public function setAmount(ServerPartEntity $entity, string $callBack): ServerPartEntity;
}