<?php
//--Class LabHrPerCr--------------------------

include_once "clsbase_LabHrPerCr.php";

class 
LabHrPerCr extends base_LabHrPerCr{

function 
RSLabHrPerCrByPgIdAndAdYOrderSeq($pgId$adY){
    
$this->SetQuery("select h.* from LabHrPerCr h, ClinicalPractice c 
                        where h.programId='$pgId' and h.admitAcadYear='$adY' and h.cliPracId=c.cliPracId 
                        order by c.sequence"
);
}

//--End class LabHrPerCr--
?>