StocksNew/Modules/Admin/app/Repositories/DepartmentInterface.php

14 lines
353 B
PHP
Raw Permalink Normal View History

2024-08-27 17:48:06 +05:45
<?php
namespace Modules\Admin\Repositories;
interface DepartmentInterface
{
public function pluck();
public function findAll();
public function getDepartmentById($departmentId);
public function delete($departmentId);
public function create(array $departmentDetails);
public function update($departmentId, array $newDetails);
}