dbmsv4/app/Services/Customer/Wallet/WalletService.php
2025-12-09 10:53:18 +09:00

16 lines
321 B
PHP

<?php
namespace App\Services\Customer\Wallet;
use App\Models\CommonModel;
use App\Services\Customer\CustomerService;
abstract class WalletService extends CustomerService
{
protected function __construct(CommonModel $model)
{
parent::__construct($model);
$this->addClassPaths('Wallet');
}
}