StocksNew/Modules/Payroll/app/Repositories/PaymentInterface.php

13 lines
308 B
PHP
Raw Normal View History

2024-08-27 12:03:06 +00:00
<?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);
}