20 lines
585 B
TypeScript
20 lines
585 B
TypeScript
import ELTStore from './elt';
|
|
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;
|
|
public elt: ELTStore;
|
|
|
|
constructor(rootStore: RootStore) {
|
|
this.payments = new PaymentsTable(rootStore);
|
|
this.insurance = new InsuranceTable(rootStore);
|
|
this.fingap = new FinGAPTable(rootStore);
|
|
this.elt = new ELTStore(rootStore);
|
|
}
|
|
}
|