14 lines
409 B
PHP
14 lines
409 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Equipment;
|
|
|
|
use App\Entities\Customer\ServiceEntity;
|
|
use App\Entities\Equipment\ServerEntity;
|
|
|
|
interface ServerInterface
|
|
{
|
|
public function attachToService(ServiceEntity $serviceEntity, $serverinfo_uid, array $formDatas = []): ServerEntity;
|
|
public function detachFromService($serverinfo_uid): ServerEntity;
|
|
public function setAmount(ServerEntity $entity): ServerEntity;
|
|
}
|