mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
12 lines
292 B
TypeScript
12 lines
292 B
TypeScript
import { PaymentReceive } from 'models';
|
|
import TenantRepository from 'repositories/TenantRepository';
|
|
|
|
export default class PaymentReceiveRepository extends TenantRepository {
|
|
/**
|
|
* Gets the repository's model.
|
|
*/
|
|
get model() {
|
|
return PaymentReceive.bindKnex(this.knex);
|
|
}
|
|
}
|