dbmsv3/app/Interfaces/Customer/ServiceInterface.php
2025-10-01 17:11:20 +09:00

11 lines
251 B
PHP

<?php
namespace App\Interfaces\Customer;
use App\Entities\Customer\ServiceEntity;
interface ServiceInterface extends CustomerInterface
{
public function setService(string $action, ServiceEntity $serviceEntity, array $formDatas): ServiceEntity;
}