Chika 7b83dbb248 insurance-table: some code improvements
rename finGAP => fingap
2022-07-11 17:15:06 +03:00

17 lines
468 B
TypeScript

import type RootStore from 'stores/root';
import FinGAPTable from './fingap';
import InsuranceTable from './insurance';
import PaymentsTable from './payments';
export default class TablesStore {
payments: PaymentsTable;
insurance: InsuranceTable;
fingap: FinGAPTable;
constructor(rootStore: RootStore) {
this.payments = new PaymentsTable(rootStore);
this.insurance = new InsuranceTable(rootStore);
this.fingap = new FinGAPTable(rootStore);
}
}