dbmsv2/app/Cells/Customer/CustomerCell.php
2025-09-10 20:23:18 +09:00

16 lines
249 B
PHP

<?php
namespace App\Cells\Customer;
use App\Cells\CommonCell;
use App\Services\CommonService;
abstract class CustomerCell extends CommonCell
{
protected function __construct(CommonService $service)
{
parent::__construct($service);
}
}