where('TestMapID', $testMapID) ->where('EndDate IS NULL') ->findAll(); } /** * Get test map detail by host test code */ public function getDetailsByHostCode($hostTestCode) { return $this->where('HostTestCode', $hostTestCode) ->where('EndDate IS NULL') ->findAll(); } /** * Get test map detail by client test code */ public function getDetailsByClientCode($clientTestCode) { return $this->where('ClientTestCode', $clientTestCode) ->where('EndDate IS NULL') ->findAll(); } }