<?php
//--Class Schedule--------------------------

include_once "clsbase_Schedule.php";

class 
Schedule extends base_Schedule{

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

function 
RSScheduleByAcYAndSeAndBetweenAWSDateAndAWEDate($xKey$yKey$zKey){
    
$this->SetQuery("select * from Schedule where acadYear='$xKey' and semester='$yKey' and '$zKey' between addWithdrawSDate and addWithdrawEDate");
}

function 
RSScheduleByAcYAndSeAndBetweenFinalExSDateAndSendGrEDate($xKey$yKey$zKey){
    
$this->SetQuery("select * from Schedule where acadYear='$xKey' and semester='$yKey' and '$zKey' between finalExamSDate and sendGradeEDate");
}

function 
RSScheduleByAcYAndSeAndBetweenPaySDateAndPayEDate($xKey$yKey$zKey){
    
$this->SetQuery("select * from Schedule where acadYear='$xKey' and semester='$yKey' and '$zKey' between paySDate and payEDate");
}

//--End class Schedule--
?>