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