restaurant changes
This commit is contained in:
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\PurchaseEntry\Repositories;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
interface PurchaseEntryInterface
|
||||
{
|
||||
public function findAll($filters);
|
||||
public function getPurchaseEntryById($PurchaseEntryId);
|
||||
public function getPurchaseEntryByEmail($email);
|
||||
public function delete($PurchaseEntryId);
|
||||
public function create(Request $request);
|
||||
public function update($PurchaseEntryId, Request $request);
|
||||
public function pluck();
|
||||
|
||||
}
|
Reference in New Issue
Block a user