feat : deliver
This commit is contained in:
31
app/Controller/Admin/PrintPlantController.php
Normal file
31
app/Controller/Admin/PrintPlantController.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Controller\Admin;
|
||||
|
||||
use App\Controller\AbstractController;
|
||||
use App\Service\Admin\System\PrintPlantService;
|
||||
|
||||
class PrintPlantController extends AbstractController
|
||||
{
|
||||
public function add()
|
||||
{
|
||||
return (new PrintPlantService)->add();
|
||||
}
|
||||
|
||||
public function edit()
|
||||
{
|
||||
return (new PrintPlantService)->edit();
|
||||
}
|
||||
|
||||
public function delete()
|
||||
{
|
||||
return (new PrintPlantService)->delete();
|
||||
}
|
||||
|
||||
public function list()
|
||||
{
|
||||
return (new PrintPlantService)->list();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user