dbmsv2/app/Interfaces/Customer/ServiceInterface.php
2025-09-23 10:43:27 +09:00

13 lines
376 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 $serviceEntity): ServiceEntity;
}