batch 2 day 1

This commit is contained in:
Kallesh B S 2025-04-09 15:17:21 +05:30
parent 4a26d65bfb
commit 9aedf7e38f
3 changed files with 15 additions and 15 deletions

View File

@ -14,9 +14,9 @@ export class CarnetSequenceController {
return this.carnetSequenceService.getCarnetSequence(body); return this.carnetSequenceService.getCarnetSequence(body);
} }
@ApiTags('Carnet Sequence - Mssql') // @ApiTags('Carnet Sequence - Mssql')
@Post('/CreateCarnetSequence/') // @Post('/CreateCarnetSequence/')
createCarnetSequence(@Body() body: CreateCarnetSequenceDTO) { // createCarnetSequence(@Body() body: CreateCarnetSequenceDTO) {
return this.carnetSequenceService.createCarnetSequence(body); // return this.carnetSequenceService.createCarnetSequence(body);
} // }
} }

View File

@ -39,9 +39,9 @@ export class SpContactsController {
return this.spContactsService.setSPDefaultcontact(body); return this.spContactsService.setSPDefaultcontact(body);
} }
@ApiTags('SPContacts - Mssql') // @ApiTags('SPContacts - Mssql')
@Put('/UpdateSPContacts') // @Put('/UpdateSPContacts')
updateSPContacts(@Body() body: UpdateSPContactsDTO) { // updateSPContacts(@Body() body: UpdateSPContactsDTO) {
return this.spContactsService.updateSPContacts(body); // return this.spContactsService.updateSPContacts(body);
} // }
} }

View File

@ -26,9 +26,9 @@ export class SpController {
return this.spService.insertNewServiceProvider(body); return this.spService.insertNewServiceProvider(body);
} }
@ApiTags('SP - Mssql') // @ApiTags('SP - Mssql')
@Put('/UpdateServiceProvider') // @Put('/UpdateServiceProvider')
updateServiceProider(@Body() body: UpdateServiceProviderDTO) { // updateServiceProider(@Body() body: UpdateServiceProviderDTO) {
return this.spService.updateServiceProvider(body); // return this.spService.updateServiceProvider(body);
} // }
} }