Files
bigcapital/server/src/repositories/TenantRepository.ts
2020-12-17 17:19:16 +02:00

15 lines
377 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) {
super(knex, cache);
}
}