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