<?php
//--Class person--------------------------
//--PK of person ::
//    1. personId
include_once "../link/keyThai.php";
class 
receiveSendType extends clsDB{

var 
$result;

var 
$RsID;
var 
$RsName;


function 
receiveSendType(&$c){
    
$this->c=$c->c;
    
$this->DB=$c->db;
}

function 
Save(){
    if (
$this->status==1){
        
//uncomment a line below if your table use ID as running number
        
$this->RsID=$this->GetNextCode();
        
$sql "insert into ReceiveSendType values(
            '"
.th2a($this->RsID)."',
             '"
.th2a($this->RsName)."'
            )"
;
    }else {
        
$sql "update ReceiveSendType set 
            RsName='"
.th2a($this->RsName)."'
            where RsID='"
.th2a($this->RsID)."'";
    }
    return 
$this->Dml($sql);
}

function 
Delete(){
    return 
$this->Dml("delete from ReceiveSendType where RsID='$this->RsID'");
}

function 
GetNextCode(){
    
$this->SetQuery("select max(RsID) as num from ReceiveSendType");
    if (
$result=$this->GetResult()) {
        return 
$result['num']+1;
    }
}

function 
RSreceiveSendType(){
    
$this->SetQuery("select * from ReceiveSendType order by RsID");
}

function 
GetRecord(){
    
$numFields $this->NumField();
    
$row $this->GetResult();
    if (
$row){
        for (
$i=0$i<$numFields$i++){
            eval(
"\$this->".mysql_field_name($this->rs$i)."=\$row['".mysql_field_name($this->rs$i)."'];");
            
$this->RsName=a2th($this->RsName);
        }
        return 
true;
    }else{    
// clear value of Member;
        
for ($i=0$i<$numFields$i++){
            eval(
"\$this->".mysql_field_name($this->rs$i)."='';");
        }
        return 
false;
    }
}
function 
SearchByKey($xKey){
    if (
$this->SetQuery("select * from ReceiveSendType where RsID= '$xKey'")){ 
        return 
1;
    }else {
        return 
0;
    }
}
//****************** You can add new functions below **********************//
function SearchShowRsName($xKey){
    
$this->SetQuery("select RsName as num from ReceiveSendType where RsID='$xKey'");
    if (
$result=$this->GetResult()) {
        return 
$result['num'];
    }
}
//--End class person--

?>