13 lines
421 B
PHP
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;
|
|
}
|