17 lines
353 B
PHP
17 lines
353 B
PHP
<?php
|
|
|
|
namespace App\Services\Part;
|
|
|
|
use App\Helpers\CommonHelper;
|
|
use App\Models\CommonModel;
|
|
use App\Services\CommonService;
|
|
|
|
abstract class PartService extends CommonService
|
|
{
|
|
protected function __construct(CommonModel $model, CommonHelper $helper)
|
|
{
|
|
parent::__construct($model, $helper);
|
|
$this->addClassName('Part');
|
|
}
|
|
}
|