13 lines
308 B
PHP
13 lines
308 B
PHP
<?php
|
|
|
|
namespace Modules\Payroll\Repositories;
|
|
|
|
interface PaymentInterface
|
|
{
|
|
public function findAll();
|
|
public function getPaymentById($paymentId);
|
|
public function delete($paymentId);
|
|
public function create(array $paymentDetails);
|
|
public function update($paymentId, array $newDetails);
|
|
}
|