This commit is contained in:
2026-02-18 22:00:00 +03:30
parent 417461a016
commit 84270ccb46
19 changed files with 387 additions and 2 deletions
+26
View File
@@ -0,0 +1,26 @@
import { Injectable } from '@nestjs/common';
import { CreateInvoiceDto } from './dto/create-invoice.dto';
import { UpdateInvoiceDto } from './dto/update-invoice.dto';
@Injectable()
export class InvoiceService {
create(createInvoiceDto: CreateInvoiceDto) {
return 'This action adds a new invoice';
}
findAll() {
return `This action returns all invoice`;
}
findOne(id: number) {
return `This action returns a #${id} invoice`;
}
update(id: number, updateInvoiceDto: UpdateInvoiceDto) {
return `This action updates a #${id} invoice`;
}
remove(id: number) {
return `This action removes a #${id} invoice`;
}
}