mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
27 lines
374 B
PHP
27 lines
374 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
use App\Models\Presupuestos\PresupuestoModel;
|
|
use App\Services\PresupuestoService;
|
|
|
|
class Test extends BaseController
|
|
{
|
|
|
|
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
PresupuestoService::test();
|
|
}
|
|
|
|
public function pruebaJJO()
|
|
{
|
|
PresupuestoService::test2();
|
|
}
|
|
}
|
|
|