Heera/Modules/Admin/app/Repositories/CountryInterface.php

13 lines
306 B
PHP
Raw Normal View History

2024-05-16 03:46:08 +00:00
<?php
namespace Modules\Admin\Repositories;
interface CountryInterface
{
public function findAll();
public function getCountryById($countryId);
public function delete($countryId);
public function create(array $countryDetails);
public function update($countryId, array $newDetails);
}