up
This commit is contained in:
@@ -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`;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user