17 lines
300 B
PHP
17 lines
300 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Api\Access\Sangh;
|
|
|
|
interface SanghInterface
|
|
{
|
|
public function getSanghList($data);
|
|
|
|
public function createSangh($data);
|
|
|
|
public function updateSangh(object $sangh, $data);
|
|
|
|
public function deleteSangh($id);
|
|
|
|
public function getMemberCard($id);
|
|
}
|