se hizo el service cuestionario-alumno

This commit is contained in:
evenegas
2025-05-20 15:53:57 -06:00
parent 27e73d9514
commit b786976565
79 changed files with 3318 additions and 169 deletions
+26
View File
@@ -0,0 +1,26 @@
import { Injectable } from '@nestjs/common';
import { CreateProgramaDto } from './dto/create-programa.dto';
import { UpdateProgramaDto } from './dto/update-programa.dto';
@Injectable()
export class ProgramaService {
create(createProgramaDto: CreateProgramaDto) {
return 'This action adds a new programa';
}
findAll() {
return `This action returns all programa`;
}
findOne(id: number) {
return `This action returns a #${id} programa`;
}
update(id: number, updateProgramaDto: UpdateProgramaDto) {
return `This action updates a #${id} programa`;
}
remove(id: number) {
return `This action removes a #${id} programa`;
}
}