if ($Inserting) {
        accede('cg_Empleados.php');
    } else {
        denegar('reg_Empleado.php');
    }
}
if (isset($_POST['act_Empleado'])) {
    $Updating = $objTransaccion->update_Empleado($_POST['ife'], $_POST['nombre'], $_POST['apellido'], $_POST['direccion'], $_POST['telefono'], $_POST['ciudad']);
    if ($Updating) {
        accede("cd_Empleado.php?btn_Query={$_POST['ife']}");
    } else {
        denegr('cd_Empleado.php?btn_Query=$_POST[ife]');
    }
}
if (!empty($_GET['del_Empleado'])) {
    $Deleting = $objTransaccion->delete_Empleado($_GET['del_Empleado']);
    if ($Deleting) {
        accede('cg_Empleados.php');
    } else {
        denegar("cd_Empleado.php?btn_Query={$GET['del_Empleado']}");
    }
}
#Push of buttom Clientes.**********
if (isset($_POST['add_Cliente'])) {
    $Inserting = $objTransaccion->reg_Cliente($_POST['nombre'], $_POST['apellido'], $_POST['direccion'], $_POST['telefono'], $_POST['ciudad']);
    if ($Inserting) {
        accede('cg_Clientes.php');
    } else {
        denegar('reg_Cliente.php');
    }
}