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