mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
15 lines
391 B
TypeScript
15 lines
391 B
TypeScript
import { Container } from 'typedi';
|
|
import TenancyService from '@/services/Tenancy/TenancyService';
|
|
import CachableRepository from './CachableRepository';
|
|
|
|
export default class TenantRepository extends CachableRepository {
|
|
repositoryName: string;
|
|
|
|
/**
|
|
* Constructor method.
|
|
* @param {number} tenantId
|
|
*/
|
|
constructor(knex, cache, i18n) {
|
|
super(knex, cache, i18n);
|
|
}
|
|
} |