From f99dd816d6fc4a3bb0a2da50aff11f763a016f02 Mon Sep 17 00:00:00 2001 From: Srinivas-Saravanan Date: Wed, 22 Jan 2025 14:38:09 +0530 Subject: [PATCH] FEAT_CONTROLLER_BDSREPORT_ADDED_SRINIVAS --- app/Controllers/BDSReportController.php | 50 +++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 app/Controllers/BDSReportController.php diff --git a/app/Controllers/BDSReportController.php b/app/Controllers/BDSReportController.php new file mode 100644 index 00000000..09e872c3 --- /dev/null +++ b/app/Controllers/BDSReportController.php @@ -0,0 +1,50 @@ +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() + { + // + } + + // ----------------------------------------------------------------------------------------- +}