Arreglo de conflictos

This commit is contained in:
Brayan Osmar Pereyra Suxo
2014-03-24 16:40:01 -04:00
parent aa15d5c800
commit f6030e8ac7
2 changed files with 56 additions and 0 deletions

View File

@@ -54,5 +54,11 @@ class ProcessCategory extends BaseProcessCategory
$aRow = $dataset->getRow();
return $aRow;
}
public function exists ($catUid)
{
$oProCat = ProcessCategoryPeer::retrieveByPk( $catUid );
return (is_object( $oProCat ) && get_class( $oProCat ) == 'ProcessCategory');
}
}