dbmsv2/app/Interfaces/Customer/ServiceInterface.php
2025-09-22 17:41:40 +09:00

15 lines
410 B
PHP

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