public function delete()
 {
     $args['formAction'] = 'index.php?action=delete&id=' . $_GET['id'];
     if ($_SERVER['REQUEST_METHOD'] === 'GET' and isset($_GET['id']) and is_numeric($_GET['id'])) {
         viewClass::renderHTML('delete.php', $args);
     } else {
         if ($_SERVER['REQUEST_METHOD'] === 'POST' and isset($_POST['confirmation']) and $_POST['confirmation'] === 'true') {
             $rsp = modelClass::deleteRh($_GET['id']);
             if ($rsp === true) {
                 $args['success'] = 'El Registro ' . $_GET['id'] . ' Fue ELIMINADO Exitosamente. ';
             } else {
                 $args['error'] = $rsp;
                 viewClass::renderHTML('error.php', $args);
             }
             $this->index($args);
         }
     }
 }
 public function delete()
 {
     $args['formAction'] = 'index.php?action=delete&id=' . $_GET['id'];
     if ($_SERVER['REQUEST_METHOD'] === 'GET' and isset($_GET['id']) and is_numeric($_GET['id'])) {
         viewClass::renderHTML('delete.php', $args);
     } else {
         if ($_SERVER['REQUEST_METHOD'] === 'POST' and isset($_POST['confirmation']) and $_POST['confirmation'] === 'true') {
             $rsp = modelClass::deleteRh($_GET['id']);
             if ($rsp === true) {
                 $args['success'] = 'El registro ' . $_GET['id'] . ' fue eliminado exitosamente';
             } else {
                 $args['error'] = 'NO SE PUDO BORRAR PORQUE EL REGISTRO ESTA SIENDO USADO';
                 //        $this->index($args);
                 //        viewClass::renderHTML('error.php', $args);
             }
             $this->index($args);
         }
     }
 }