Delete Express record and MySql db record simutaneously

Permalink
$dbDel = Loader::db();
$rsDel = $dbDel->Execute('DELETE FROM table WHERE exEntryID=?',$_SESSION['session']);

The above code is to delete mysql database directly and the following code is to delete express entry record. How to develop only one execution instead of above and following codes?

Express::deleteEntry($_SESSION['session_rdo_productmaster']);