changes
This commit is contained in:
15
Modules/Stock/app/Repositories/StockLocationInterface.php
Normal file
15
Modules/Stock/app/Repositories/StockLocationInterface.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Stock\Repositories;
|
||||
|
||||
interface StockLocationInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getStockLocationById($StockLocationId);
|
||||
public function getStockLocationByEmail($email);
|
||||
public function delete($StockLocationId);
|
||||
public function create($StockLocationDetails);
|
||||
public function update($StockLocationId, array $newDetails);
|
||||
public function pluck();
|
||||
|
||||
}
|
Reference in New Issue
Block a user