14 lines
351 B
TypeScript
14 lines
351 B
TypeScript
import type RootStore from 'stores/root';
|
|
import FinGAPTable from './fingap';
|
|
import InsuranceTable from './insurance';
|
|
|
|
export default class TablesStore {
|
|
insurance: InsuranceTable;
|
|
finGAP: FinGAPTable;
|
|
|
|
constructor(rootStore: RootStore) {
|
|
this.insurance = new InsuranceTable(rootStore);
|
|
this.finGAP = new FinGAPTable(rootStore);
|
|
}
|
|
}
|