dbmsv3/app/Interfaces/Customer/ServiceInterface.php
2025-10-30 13:51:10 +09:00

11 lines
212 B
PHP

<?php
namespace App\Interfaces\Customer;
use App\Entities\Customer\ServiceEntity;
interface ServiceInterface
{
public function setAmount(ServiceEntity $entity, int $calculatedServerAmount): ServiceEntity;
}