<?php
//--Class Generation--------------------------

include_once "clsbase_Generation.php";

class 
Generation extends base_Generation{

function 
RSGenerationOrderPgIdAndAcYAndSe(){
    
$this->SetQuery("select * from Generation order by programId, acadYear, semester");
}

function 
RSGenerationOrderPgIdAndAcYAndSeLimit($start$pageSize){
    
$this->SetQuery("select * from Generation order by programId, acadYear, semester limit $start, $pageSize");
}

function 
RSGenerationByPgIdAndAcYAndSe($xKey$yKey$zKey){
    
$this->SetQuery("select * from Generation where programId='$xKey' and acadYear='$yKey' and semester='$zKey'");
}

//--End class Generation--
?>