billing-rsabhk/app/Interfaces/TrRegistrasiInterface.php
2025-04-27 18:17:42 +07:00

13 lines
245 B
PHP

<?php
namespace App\Interfaces;
interface TrRegistrasiInterface
{
public function getAll();
public function getById($id);
public function store($data);
public function update($id, $data);
public function delete($id);
}