2023-02-06 12:19:39 +03:00

17 lines
491 B
TypeScript

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