Files
Global-Jain/app/Repositories/Api/Access/Sant/SantInterface.php

14 lines
214 B
PHP
Raw Normal View History

2025-11-05 10:37:10 +05:30
<?php
namespace App\Repositories\Api\Access\Sant;
interface SantInterface
{
public function getSantList($data);
public function createSant($data);
public function updateSant(object $sant,$data);
}