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