StocksNew/Modules/Ingredient/app/Repositories/IngredientCategoryInterface.php

16 lines
459 B
PHP
Raw Normal View History

2024-09-19 18:33:08 +05:45
<?php
namespace Modules\Ingredient\Repositories;
interface IngredientCategoryInterface
{
public function findAll();
public function getIngredientCategoryById($IngredientCategoryId);
public function getIngredientCategoryByEmail($email);
public function delete($IngredientCategoryId);
public function create($IngredientCategoryDetails);
public function update($IngredientCategoryId, array $newDetails);
public function pluck();
}