Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.productorubro.php');
class ProductoRubros extends DBAccess
{
public function GetAllByProducto(Producto $oProducto)
{
$arr = array();
$sql = "SELECT *";
$sql.= " FROM tblProductoRubros";
$sql.= " WHERE IdProducto = " . DB::Number($oProducto->IdProducto);
if ( !($oRes = $this->GetQuery($sql)) )
return false;
while ($oRow = $oRes->GetRow())
{
$oProductoRubro = new ProductoRubro();
$oProductoRubro->ParseFromArray($oRow);
array_push($arr, $oProductoRubro);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdProducto, $IdRubro)
{
$sql = "SELECT *";
$sql.= " FROM tblProductoRubros";
$sql.= " WHERE IdProducto = " . DB::Number($IdProducto);
$sql.= " AND IdRubro = " . DB::Number($IdRubro);
if ( !($oRes = $this->GetQuery($sql)) )
return false;
if ( !($oRow = $oRes->GetRow()) )
return false;
$oProductoRubro = new ProductoRubro();
$oProductoRubro->ParseFromArray($oRow);
return $oProductoRubro;
}
public function Create(ProductoRubro $oProductoRubro)
{
$arr = array
(
'IdProducto' => DB::Number($oProductoRubro->IdProducto),
'IdRubro' => DB::Number($oProductoRubro->IdRubro),
'Parent' => DB::Bool($oProductoRubro->Parent)
);
if (!$this->Insert('tblProductoRubros', $arr))
return false;
return $oProductoRubro;
}
public function Delete($IdProducto, $IdRubro)
{
$where = " IdProducto = " . DB::Number($IdProducto);
$where.= " AND IdRubro = " . DB::Number($IdRubro);
if (!DBAccess::DeleteEntidad('tblProductoRubros', $where))
return false;
return true;
}
public function DeleteAll($IdProducto)
{
$where = " IdProducto = " . DB::Number($IdProducto);
if (!DBAccess::DeleteEntidad('tblProductoRubros', $where))
return false;
return true;
}
public function DeleteParent($IdProducto)
{
$where = " IdProducto = " . DB::Number($IdProducto);
$where.= " AND Parent = " . DB::Bool(true);
if (!DBAccess::DeleteEntidad('tblProductoRubros', $where))
return false;
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat