##// END OF EJS Templates
agregado el controlador staff y algunas funciones como agregar nuevo.
agregado el controlador staff y algunas funciones como agregar nuevo.

File last commit:

r0:1
r2:3
Show More
ModelAbstract.php
7 lines | 187 B | text/x-php | PhpLexer
<?php
abstract class ModelAbstract{
abstract protected function insert($data);
abstract protected function update($data);
abstract protected function delete($id);
}
?>