mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-01 22:17:55 -05:00
11 lines
246 B
PHP
11 lines
246 B
PHP
<?php
|
|
/*
|
|
This interface is implemented by any controller that keeps track of people, such
|
|
as customers and employees.
|
|
*/
|
|
require_once("Idata_controller.php");
|
|
interface iPerson_controller extends iData_controller
|
|
{
|
|
public function mailto();
|
|
}
|
|
?>
|