first commit
This commit is contained in:
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Recruit\Repositories;
|
||||
|
||||
interface InterviewScheduleInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getInterviewScheduleById($interviewScheduleId);
|
||||
public function delete($interviewScheduleId);
|
||||
public function create(array $interviewScheduleDetails);
|
||||
public function update($interviewScheduleId, array $newDetails);
|
||||
}
|
Reference in New Issue
Block a user