dbmsv3/app/Cells/Customer/CustomerCell.php
2025-10-01 14:03:52 +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);
}
}