2024-06-18 10:41:58 +00:00
|
|
|
<?php
|
|
|
|
|
2024-06-23 11:17:56 +00:00
|
|
|
namespace App\Repositories;
|
2024-06-18 10:41:58 +00:00
|
|
|
|
|
|
|
interface AdCategoriesInterface
|
|
|
|
{
|
|
|
|
public function create(array $adCategoriesDetail);
|
|
|
|
public function update($adCategoryId, array $newDetails);
|
|
|
|
}
|