carrera progrma listo
This commit is contained in:
@@ -1,9 +1,19 @@
|
||||
import { Controller, Get, Post, Put } from '@nestjs/common';
|
||||
import { Controller, Delete, Get, Post, Put } from '@nestjs/common';
|
||||
import { CarreraProgramaService } from './carrera-programa.service';
|
||||
|
||||
@Controller('carrera-programa')
|
||||
export class CarreraProgramaController {
|
||||
constructor(private carreraProgramaService: CarreraProgramaService) {}
|
||||
|
||||
|
||||
@Post()
|
||||
create() {}
|
||||
|
||||
@Delete()
|
||||
delete() {}
|
||||
|
||||
@Get()
|
||||
get() {}
|
||||
|
||||
@Put()
|
||||
update() {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user