StocksNew/Modules/PurchaseEntry/app/Repositories/PurchaseEntryInterface.php

18 lines
459 B
PHP
Raw Normal View History

2024-09-19 18:33:08 +05:45
<?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();
}