2024-06-18 16:26:58 +05:45
|
|
|
<?php
|
|
|
|
|
2024-06-23 17:02:56 +05:45
|
|
|
namespace App\Repositories;
|
2024-06-18 16:26:58 +05:45
|
|
|
|
|
|
|
interface AdCategoriesInterface
|
|
|
|
{
|
|
|
|
public function create(array $adCategoriesDetail);
|
|
|
|
public function update($adCategoryId, array $newDetails);
|
|
|
|
}
|