economyContract->search($request->all()); return ResponseJsonMessage::withData($response); } public function grossAnnualEconomy(Request $request): JsonResponse { $response = $this->economyContract->getGrossAnnualEconomy($request->all()); return ResponseJsonMessage::withData($response); } public function grossMonthlyEconomy(Request $request): JsonResponse { $response = $this->economyContract->getGrossMonthlyEconomy($request->all()); return ResponseJsonMessage::withData($response); } public function captiveMonthlyEconomy(Request $request): JsonResponse { $response = $this->economyContract->getCaptiveMonthlyEconomy($request->all()); return ResponseJsonMessage::withData($response); } public function costMWhEconomy(Request $request): JsonResponse { $response = $this->economyContract->getCostMWhEconomy($request->all()); return ResponseJsonMessage::withData($response); } }