13 lines
398 B
PHP
13 lines
398 B
PHP
<?php
|
|
|
|
namespace App\Interfaces\Customer;
|
|
|
|
use App\Entities\Customer\ServiceEntity;
|
|
use App\Entities\Equipment\ServerPartEntity;
|
|
|
|
interface ServiceInterface extends CustomerInterface
|
|
{
|
|
public function setService(string $action, ServiceEntity $serviceEntity, array $serviceDatas);
|
|
public function setServiceAmount(ServerPartEntity $serverPartEntity, array $serverPartDatas): ServerPartEntity;
|
|
}
|