2025-12-09 13:59:07 +03:30
|
|
|
import { Module } from '@nestjs/common'
|
2026-01-07 15:25:59 +03:30
|
|
|
import { PrismaModule } from '../../prisma/prisma.module'
|
2025-12-09 13:59:07 +03:30
|
|
|
import { SalesInvoicesController } from './sales-invoices.controller'
|
|
|
|
|
import { SalesInvoicesService } from './sales-invoices.service'
|
2026-01-07 15:25:59 +03:30
|
|
|
import { SalesInvoicesWorkflow } from './sales-invoices.workflow'
|
2025-12-09 13:59:07 +03:30
|
|
|
|
|
|
|
|
@Module({
|
|
|
|
|
imports: [PrismaModule],
|
|
|
|
|
controllers: [SalesInvoicesController],
|
2026-01-07 15:25:59 +03:30
|
|
|
providers: [SalesInvoicesService, SalesInvoicesWorkflow],
|
|
|
|
|
exports: [SalesInvoicesWorkflow],
|
2025-12-09 13:59:07 +03:30
|
|
|
})
|
|
|
|
|
export class SalesInvoicesModule {}
|