mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
|
|
import { Item } from "models";
|
|
import TenantRepository from "./TenantRepository";
|
|
|
|
export default class ItemRepository extends TenantRepository {
|
|
/**
|
|
* Gets the repository's model.
|
|
*/
|
|
get model() {
|
|
return Item.bindKnex(this.knex);
|
|
}
|
|
} |