<?php
//--Class DomFeeTP--------------------------

include_once "clsbase_DomFeeTP.php";

class 
DomFeeTP extends base_DomFeeTP{

function 
RSDomFeeTPByAcYAndSe($xKey$yKey){
    
$this->SetQuery("select * from DomFeeTP where acadYear='$xKey' and semester='$yKey'");
}

function 
RSDomFeeTPByAcYAndSeLimit($xKey$yKey$start$pageSize){
    
$this->SetQuery("select * from DomFeeTP where acadYear='$xKey' and semester='$yKey' limit $start, $pageSize");
}

//--End class DomFeeTP--
?>