BE/src/mssql/uscib-managed-sp/sp/sp.controller.ts

16 lines
403 B
TypeScript
Raw Normal View History

2025-04-07 17:10:59 +05:30
import { Controller, Get } from '@nestjs/common';
import { ApiTags } from '@nestjs/swagger';
import { SpService } from './sp.service';
@Controller('mssql')
export class SpController {
constructor(private readonly spService: SpService) {}
@ApiTags('SP - Mssql')
@Get('/GetAllServiceproviders')
getAllServiceproviders() {
return this.spService.getAllServiceproviders();
}
}