<?php
//--Class GradeConfig--------------------------

include_once "clsbase_GradeConfig.php";

class 
GradeConfig extends base_GradeConfig{

function 
RSGradeConfigLimit($start$pageSize){
    
$this->SetQuery("select * from GradeConfig order by gradeId limit $start, $pageSize");
}

function 
SearchByGrade($xKey){
    if(
$this->SetQuery("select * from GradeConfig where grade='$xKey'")){
        return 
1;
    }else{
        return 
0;
    }
}

//--End class GradeConfig--
?>