13 lines
339 B
PHP
13 lines
339 B
PHP
|
<?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);
|
||
|
}
|