dbmsv2/app/Interfaces/Customer/ServiceInterface.php
2025-09-19 19:48:28 +09:00

14 lines
454 B
PHP

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