public function Del($id_ciudad) { if (isset($id_ciudad) && $id_ciudad != "") { $Controller = new Controller(); $sql = " {$id_ciudad} "; $Controller->Del($this->_tabla, $this->_registro, $sql); } }
public function Del($id_direccion) { if (isset($id_direccion) && $id_direccion != "") { $Controller = new Controller(); $sql = " {$id_direccion} "; $Controller->Del($this->_tabla, $this->_registro, $sql); } }
public function Del($id_bodega) { if (isset($id_bodega) && $id_bodega != "") { $Controller = new Controller(); $sql = " {$id_bodega} "; $Controller->Del($this->_tabla, $this->_registro, $sql); } }
public function Del($numero_documento) { $Controller = new Controller(); if (isset($numero_documento) && $numero_documento != "") { $sql = "{$numero_documento}"; $Controller->Del($this->_tabla, $this->registro, $sql); } }