first commit
This commit is contained in:
12
Modules/Meeting/app/Repositories/MeetingInterface.php
Normal file
12
Modules/Meeting/app/Repositories/MeetingInterface.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Meeting\Repositories;
|
||||
|
||||
interface MeetingInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getMeetingById($meetingId);
|
||||
public function delete($meetingId);
|
||||
public function create(array $meetingDetails);
|
||||
public function update($meetingId, array $newDetails);
|
||||
}
|
Reference in New Issue
Block a user