dbmsv2/app/Interfaces/Customer/ServiceInterface.php
2025-09-22 10:32:24 +09:00

13 lines
377 B
PHP

<?php
namespace App\Interfaces\Customer;
use App\Entities\Customer\ServiceEntity;
interface ServiceInterface extends CustomerInterface
{
public function createService(ServiceEntity $serviceEntity): ServiceEntity;
public function modifyService(ServiceEntity $serviceEntity): ServiceEntity;
public function deleteService(ServiceEntity $serviceEntitys): ServiceEntity;
}