dbmsv2/app/Interfaces/Customer/ServiceInterface.php
2025-09-19 12:16:17 +09:00

11 lines
218 B
PHP

<?php
namespace App\Interfaces\Customer;
use App\Entities\Equipment\ServerPartEntity;
interface ServiceInterface extends CustomerInterface
{
public function setServiceAmount(array $formDatas): ServerPartEntity;
}