コード例 #1
0
ファイル: ContactType.php プロジェクト: Lazaro-Gallo/psmn
 function getContactType($Identify)
 {
     $tbContacttype = new DbTable_ContactType();
     $objResultContactType = $tbContacttype->fetchRow("Id = {$Identify}");
     return $objResultContactType;
 }
コード例 #2
0
ファイル: Contact.php プロジェクト: Lazaro-Gallo/psmn
 function getContactTypes()
 {
     $tbContactTypes = new DbTable_ContactType();
     return $tbContactTypes->fetchAll();
 }