create new ep delete programs

This commit is contained in:
2026-02-19 08:33:53 -06:00
parent 6055c6ae76
commit cba8ec6d0e
2 changed files with 13 additions and 3 deletions
+4
View File
@@ -35,6 +35,10 @@ export class ProgramaService {
await this.programaRepository.update(id, updateProgramaDto);
return await this.findOne(id);
}
async delete(id:number){
return this.programaRepository.delete(id)
}
}