<?php
//--Class ClinicalPractice--------------------------

include_once "clsbase_ClinicalPractice.php";

class 
ClinicalPractice extends base_ClinicalPractice{

function 
RSClinicalPracticeByCliPracName($xKey){
    
$this->SetQuery("select * from ClinicalPractice where cliPracName='$xKey'");
}

function 
RSClinicalPracticeByLikeCliPracName($xKey){
    
$this->SetQuery("select * from ClinicalPractice where cliPracName like '%$xKey%' order by sequence");
}

function 
RSClinicalPracticeByLikeCliPracNameLimit($xKey$start$pageSize){
    
$this->SetQuery("select * from ClinicalPractice where cliPracName like '%$xKey%' order by sequence limit $start, $pageSize");
}

function 
RSClinicalPracticeByCliPracNameAndNotCliPracId($xKey$yKey){
    
$this->SetQuery("select * from ClinicalPractice where cliPracName='$xKey' and cliPracId!='$yKey'");
}

//--End class ClinicalPractice--
?>