16 lines
293 B
PHP
16 lines
293 B
PHP
<?php
|
|
|
|
namespace App\Services\Part;
|
|
|
|
use App\Models\CommonModel;
|
|
use App\Services\CommonService;
|
|
|
|
abstract class PartService extends CommonService
|
|
{
|
|
protected function __construct(CommonModel $model)
|
|
{
|
|
parent::__construct($model);
|
|
$this->addClassPaths('Part');
|
|
}
|
|
}
|