mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
33 lines
1.4 KiB
TypeScript
33 lines
1.4 KiB
TypeScript
import { Module } from '@nestjs/common';
|
|
import { BillPaymentsApplication } from './BillPaymentsApplication.service';
|
|
import { CreateBillPaymentService } from './commands/CreateBillPayment.service';
|
|
import { EditBillPayment } from './commands/EditBillPayment.service';
|
|
import { GetBillPayment } from './queries/GetBillPayment.service';
|
|
import { DeleteBillPayment } from './commands/DeleteBillPayment.service';
|
|
import { BillPaymentBillSync } from './commands/BillPaymentBillSync.service';
|
|
import { GetPaymentBills } from './queries/GetPaymentBills.service';
|
|
import { BillPaymentValidators } from './commands/BillPaymentValidators.service';
|
|
import { CommandBillPaymentDTOTransformer } from './commands/CommandBillPaymentDTOTransformer.service';
|
|
import { TenancyContext } from '../Tenancy/TenancyContext.service';
|
|
import { BranchTransactionDTOTransformer } from '../Branches/integrations/BranchTransactionDTOTransform';
|
|
import { BranchesSettingsService } from '../Branches/BranchesSettings';
|
|
|
|
@Module({
|
|
providers: [
|
|
BillPaymentsApplication,
|
|
CreateBillPaymentService,
|
|
EditBillPayment,
|
|
GetBillPayment,
|
|
DeleteBillPayment,
|
|
BillPaymentBillSync,
|
|
GetPaymentBills,
|
|
BillPaymentValidators,
|
|
CommandBillPaymentDTOTransformer,
|
|
BranchTransactionDTOTransformer,
|
|
BranchesSettingsService,
|
|
TenancyContext
|
|
],
|
|
controllers: [],
|
|
})
|
|
export class BillPaymentsModule {}
|