skailan-crm
Version:
Servicio de CRM y gestión de ventas para Skailan
8 lines • 429 B
TypeScript
import { Opportunity } from '../entities/Opportunity';
export interface IOpportunityRepository {
findById(id: string, organizationId: string): Promise<Opportunity | null>;
findAll(organizationId: string, leadId?: string): Promise<Opportunity[]>;
save(opportunity: Opportunity): Promise<Opportunity>;
delete(id: string, organizationId: string): Promise<void>;
}
//# sourceMappingURL=IOpportunityRepository.d.ts.map