17 lines
311 B
PHP
17 lines
311 B
PHP
<?php
|
|
|
|
namespace App\Backend;
|
|
|
|
use App\Entities\CategoryEntity;
|
|
use App\Models\CategoryModel;
|
|
use App\Models\ProductModel;
|
|
|
|
class CategoryBackend extends BaseHierarchyBackend
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('Category');
|
|
$this->_model = new CategoryModel();
|
|
}
|
|
}
|