UNPKG

skailan-crm

Version:

Servicio de CRM y gestión de ventas para Skailan

15 lines 489 B
export class DeleteLead { leadRepository; constructor(leadRepository) { this.leadRepository = leadRepository; } async execute(request) { const { id, organizationId } = request; const existingLead = await this.leadRepository.findById(id, organizationId); if (!existingLead) { throw new Error('Lead not found.'); } await this.leadRepository.delete(id, organizationId); } } //# sourceMappingURL=DeleteLead.js.map