first commit
This commit is contained in:
13
Modules/Admin/app/Repositories/WorkShiftInterface.php
Normal file
13
Modules/Admin/app/Repositories/WorkShiftInterface.php
Normal file
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Admin\Repositories;
|
||||
|
||||
interface WorkShiftInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getWorkShiftById($workShiftId);
|
||||
public function delete($workShiftId);
|
||||
public function create(array $workShiftDetails);
|
||||
public function update($workShiftId, array $newDetails);
|
||||
public function pluck();
|
||||
}
|
Reference in New Issue
Block a user