mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
refactor: financial reports to nestjs
This commit is contained in:
27
temp/CashFlow/Cashflow.module.ts
Normal file
27
temp/CashFlow/Cashflow.module.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { CashflowSheetMeta } from './CashflowSheetMeta';
|
||||
import { CashFlowRepository } from './CashFlowRepository';
|
||||
import { CashflowTablePdfInjectable } from './CashflowTablePdfInjectable';
|
||||
import { CashflowExportInjectable } from './CashflowExportInjectable';
|
||||
import { CashflowController } from './Cashflow.controller';
|
||||
import { FinancialSheetCommonModule } from '../../common/FinancialSheetCommon.module';
|
||||
import { CashflowTableInjectable } from './CashflowTableInjectable';
|
||||
import { CashFlowStatementService } from './CashFlowService';
|
||||
import { TenancyContext } from '@/modules/Tenancy/TenancyContext.service';
|
||||
import { CashflowSheetApplication } from './CashflowSheetApplication';
|
||||
|
||||
@Module({
|
||||
imports: [FinancialSheetCommonModule],
|
||||
providers: [
|
||||
CashFlowRepository,
|
||||
CashflowSheetMeta,
|
||||
CashFlowStatementService,
|
||||
CashflowTablePdfInjectable,
|
||||
CashflowExportInjectable,
|
||||
CashflowTableInjectable,
|
||||
CashflowSheetApplication,
|
||||
TenancyContext
|
||||
],
|
||||
controllers: [CashflowController],
|
||||
})
|
||||
export class CashflowReportModule {}
|
||||
Reference in New Issue
Block a user