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