mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 00:02:05 -04:00
17 lines
272 B
PHP
17 lines
272 B
PHP
<?php
|
|
|
|
namespace Modules\Setup\Repositories;
|
|
|
|
interface DepartmentRepositoryInterface
|
|
{
|
|
public function all();
|
|
|
|
public function create(array $data);
|
|
|
|
public function find($id);
|
|
|
|
public function update(array $data, $id);
|
|
|
|
public function delete($id);
|
|
}
|