mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-01 22:17:55 -05:00
16 lines
407 B
PHP
16 lines
407 B
PHP
<?php
|
|
/*
|
|
This interface is implemented by any controller that keeps track of data items, such
|
|
as the customers, employees, and items controllers.
|
|
*/
|
|
interface iData_controller
|
|
{
|
|
public function index();
|
|
public function search();
|
|
public function suggest_search();
|
|
public function get_row();
|
|
public function view($data_item_id=-1);
|
|
public function save($data_item_id=-1);
|
|
public function delete();
|
|
}
|
|
?>
|