This commit is contained in:
sriramv 2022-03-01 11:11:37 +05:30
parent ad69463820
commit 80013c49b2

View File

@ -20,7 +20,7 @@ module.exports = app => {
*/
router.get("/demo", Testcontroller.Welcome);
// Entity Details List Api //
// Entity Details List Api
/**
* @swagger
* /api/entityDetailsList:
@ -41,7 +41,7 @@ router.get("/demo", Testcontroller.Welcome);
*/
router.get("/entityDetailsList", Entitycontroller.EntityDetailsList);
// Applicant Details List Api //
// Applicant Details List Api
/**
* @swagger
* /api/applicantDetailsList:
@ -62,7 +62,7 @@ router.get("/entityDetailsList", Entitycontroller.EntityDetailsList);
*/
router.get("/applicantDetailsList", Entitycontroller.ApplicantDetailsList);
// Applicants relationship List Api //
// Applicants relationship List Api
/**
* @swagger
* /api/applicantRelationshipList:
@ -83,7 +83,7 @@ router.get("/applicantDetailsList", Entitycontroller.ApplicantDetailsList);
*/
router.get("/applicantRelationshipList", Entitycontroller.ApplicantRelationshipList);
// Residence Address Details List Api //
// Residence Address Details List Api
/**
* @swagger
* /api/residenceAddressDetailsList:
@ -104,7 +104,7 @@ router.get("/applicantRelationshipList", Entitycontroller.ApplicantRelationshipL
*/
router.get("/residenceAddressDetailsList", Entitycontroller.ResidenceAddressDetailsList);
// Property Ownership Income Considered Details List Api //
// Property Ownership Income Considered Details List Api
/**
* @swagger
* /api/propertyOwnershipList:
@ -125,7 +125,7 @@ router.get("/residenceAddressDetailsList", Entitycontroller.ResidenceAddressDeta
*/
router.get("/propertyOwnershipList", Entitycontroller.PropertyOwnershipList);
// Create new Entity Details //
// Create new Entity Details
/**
* @swagger
* definitions:
@ -172,7 +172,7 @@ router.get("/propertyOwnershipList", Entitycontroller.PropertyOwnershipList);
*/
router.post("/createEntityDetails", Entitycontroller.createEntityDetails);
// Create new Applicant and it's child Details (Relationship, Address, Property ownership) //
// Create new Applicant and it's child Details (Relationship, Address, Property ownership)
router.post("/createApplicantDetails", Entitycontroller.createApplicantDetails);