StocksNew/Modules/Payroll/app/Repositories/PaymentInterface.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

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);
}