14 lines
361 B
PHP
14 lines
361 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Recruit\Repositories;
|
||
|
|
||
|
interface OfferLetterInterface
|
||
|
{
|
||
|
public function findAll();
|
||
|
public function pluck();
|
||
|
public function getOfferLetterById($offerLetterId);
|
||
|
public function delete($offerLetterId);
|
||
|
public function create(array $offerLetterDetails);
|
||
|
public function update($offerLetterId, array $newDetails);
|
||
|
}
|