mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
feat: sales and purchases status. feat: sales and purchases auto-increment number. fix: settings find query with extra columns.
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
import { PaymentReceive } from 'models';
|
|
import TenantRepository from 'repositories/TenantRepository';
|
|
|
|
export default class PaymentReceiveRepository extends TenantRepository {
|
|
/**
|
|
* Constructor method.
|
|
*/
|
|
constructor(knex, cache) {
|
|
super(knex, cache);
|
|
this.model = PaymentReceive;
|
|
}
|
|
}
|