skailan-crm
Version:
Servicio de CRM y gestión de ventas para Skailan
15 lines • 545 B
JavaScript
export class DeleteQuoteItem {
quoteItemRepository;
constructor(quoteItemRepository) {
this.quoteItemRepository = quoteItemRepository;
}
async execute(request) {
const { id, organizationId } = request;
const existingQuoteItem = await this.quoteItemRepository.findById(id, organizationId);
if (!existingQuoteItem) {
throw new Error('Quote item not found.');
}
await this.quoteItemRepository.delete(id, organizationId);
}
}
//# sourceMappingURL=DeleteQuoteItem.js.map