2022-04-17 20:56:02 -05:00
|
|
|
import { Controller, Delete, Get, Post, Put } from '@nestjs/common';
|
2022-04-04 20:53:32 -05:00
|
|
|
import { CarreraProgramaService } from './carrera-programa.service';
|
2022-03-31 14:33:11 -06:00
|
|
|
|
|
|
|
|
@Controller('carrera-programa')
|
2022-04-04 20:53:32 -05:00
|
|
|
export class CarreraProgramaController {
|
|
|
|
|
constructor(private carreraProgramaService: CarreraProgramaService) {}
|
2022-04-17 20:47:35 -05:00
|
|
|
|
2022-04-17 20:56:02 -05:00
|
|
|
@Post()
|
|
|
|
|
create() {}
|
|
|
|
|
|
|
|
|
|
@Delete()
|
|
|
|
|
delete() {}
|
|
|
|
|
|
|
|
|
|
@Get()
|
|
|
|
|
get() {}
|
|
|
|
|
|
|
|
|
|
@Put()
|
|
|
|
|
update() {}
|
2022-04-04 20:53:32 -05:00
|
|
|
}
|