Files
psp_api/src/modules/sales-invoices/sales-invoices.service.ts
T

20 lines
367 B
TypeScript
Raw Normal View History

2026-01-07 15:25:59 +03:30
import { Injectable } from '@nestjs/common'
@Injectable()
export class SalesInvoicesService {
findAll() {
// TODO: Implement fetching all sales invoices
return []
2026-01-07 15:25:59 +03:30
}
findOne(id: number) {
// TODO: Implement fetching a single sales invoice
return {}
2026-01-07 15:25:59 +03:30
}
create(data: any) {
// TODO: Implement sales invoice creation
return data
2026-01-07 15:25:59 +03:30
}
}