dbmsv3/app/Interfaces/Customer/ServiceInterface.php
2025-10-01 14:03:52 +09:00

13 lines
459 B
PHP

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