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) { } constructor(private readonly manageFeeService: ManageFeeService) { }
@ApiTags('Manage Fee - Mssql') // @ApiTags('Manage Fee - Mssql')
@Get('/GetBasicFeeRates') // @Get('/GetBasicFeeRates')
GetBasicFeeRates(@Query() body: GetFeeGeneralDTO) { GetBasicFeeRates(@Query() body: GetFeeGeneralDTO) {
return this.manageFeeService.GETBASICFEERATES(body); return this.manageFeeService.GETBASICFEERATES(body);
} }
@ApiTags('Manage Fee - Mssql') // @ApiTags('Manage Fee - Mssql')
@Post('/CreateBasicFee') // @Post('/CreateBasicFee')
CreateBasicFee(@Body() body: CreateBasicFeeDTO) { CreateBasicFee(@Body() body: CreateBasicFeeDTO) {
return this.manageFeeService.CREATEBASICFEE(body); return this.manageFeeService.CREATEBASICFEE(body);
} }
@ApiTags('Manage Fee - Mssql') // @ApiTags('Manage Fee - Mssql')
@Patch('/UpdateBasicFee') // @Patch('/UpdateBasicFee')
UpdateBasicFee(@Body() body: UpdateBasicFeeDTO) { UpdateBasicFee(@Body() body: UpdateBasicFeeDTO) {
return this.manageFeeService.UPDATEBASICFEE(body); return this.manageFeeService.UPDATEBASICFEE(body);
} }