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

13 lines
308 B
PHP
Raw Normal View History

2024-08-27 17:48:06 +05:45
<?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);
}