2022-06-29 13:30:06 +03:00

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);
}
}