New-OMIS/Modules/Admin/app/Repositories/EventInterface.php

13 lines
294 B
PHP
Raw Permalink Normal View History

2024-04-15 18:01:31 +05:45
<?php
namespace Modules\Admin\Repositories;
interface EventInterface
{
public function findAll();
public function getEventById($eventId);
public function delete($eventId);
public function create(array $eventDetails);
public function update($eventId, array $newDetails);
}