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