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