added api mask me mssql

This commit is contained in:
Kallesh B S 2025-05-08 17:07:09 +05:30
parent 05c0e9dc43
commit ad179c5f43

View File

@ -8,20 +8,20 @@ export class ManageFeeController {
constructor(private readonly manageFeeService: ManageFeeService) { }
@ApiTags('Manage Fee - Mssql')
@Get('/GetBasicFeeRates')
// @ApiTags('Manage Fee - Mssql')
// @Get('/GetBasicFeeRates')
GetBasicFeeRates(@Query() body: GetFeeGeneralDTO) {
return this.manageFeeService.GETBASICFEERATES(body);
}
@ApiTags('Manage Fee - Mssql')
@Post('/CreateBasicFee')
// @ApiTags('Manage Fee - Mssql')
// @Post('/CreateBasicFee')
CreateBasicFee(@Body() body: CreateBasicFeeDTO) {
return this.manageFeeService.CREATEBASICFEE(body);
}
@ApiTags('Manage Fee - Mssql')
@Patch('/UpdateBasicFee')
// @ApiTags('Manage Fee - Mssql')
// @Patch('/UpdateBasicFee')
UpdateBasicFee(@Body() body: UpdateBasicFeeDTO) {
return this.manageFeeService.UPDATEBASICFEE(body);
}