13 lines
377 B
PHP
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;
|
|
}
|