mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
11 lines
309 B
TypeScript
11 lines
309 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);
|
|
}
|
|
} |