FEAT_CONTROLLER_BDSREPORT_ADDED_SRINIVAS
This commit is contained in:
parent
8cfed93bd3
commit
f99dd816d6
50
app/Controllers/BDSReportController.php
Normal file
50
app/Controllers/BDSReportController.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controllers;
|
||||
|
||||
use App\Controllers\BaseController;
|
||||
use CodeIgniter\HTTP\ResponseInterface;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Kint\Kint;
|
||||
|
||||
use App\Models\ClientModel;
|
||||
use App\Models\ClientPolicyModel;
|
||||
use App\Models\InsurerModel;
|
||||
use App\Models\InsurerBranchModel;
|
||||
use App\Models\PolicyTransactionModel;
|
||||
use App\Models\PTCOShareDetailsModel;
|
||||
use App\Models\COShareStmtDetailsModel;
|
||||
|
||||
|
||||
class BDSReportController extends BaseController
|
||||
{
|
||||
protected $myLogger;
|
||||
protected $clientModel;
|
||||
protected $clientPolicyModel;
|
||||
protected $insurerModel;
|
||||
protected $insurerBranchModel;
|
||||
protected $policyTransactionModel;
|
||||
protected $PTCOShareDetailsModel;
|
||||
protected $coShareStmtDetailsModel;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->myLogger = \Config\Services::mylogger();
|
||||
|
||||
$this->clientModel = new ClientModel();
|
||||
$this->clientPolicyModel = new ClientPolicyModel();
|
||||
$this->insurerModel = new InsurerModel();
|
||||
$this->insurerBranchModel = new InsurerBranchModel();
|
||||
$this->policyTransactionModel = new PolicyTransactionModel();
|
||||
$this->PTCOShareDetailsModel = new PTCOShareDetailsModel();
|
||||
$this->coShareStmtDetailsModel = new COShareStmtDetailsModel();
|
||||
|
||||
|
||||
}
|
||||
public function index()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------------------
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user