StocksNew/Modules/Training/app/Repositories/TrainingListInterface.php

13 lines
339 B
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?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);
}