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); router.get("/demo", Testcontroller.Welcome);
// Entity Details List Api // // Entity Details List Api
/** /**
* @swagger * @swagger
* /api/entityDetailsList: * /api/entityDetailsList:
@ -41,7 +41,7 @@ router.get("/demo", Testcontroller.Welcome);
*/ */
router.get("/entityDetailsList", Entitycontroller.EntityDetailsList); router.get("/entityDetailsList", Entitycontroller.EntityDetailsList);
// Applicant Details List Api // // Applicant Details List Api
/** /**
* @swagger * @swagger
* /api/applicantDetailsList: * /api/applicantDetailsList:
@ -62,7 +62,7 @@ router.get("/entityDetailsList", Entitycontroller.EntityDetailsList);
*/ */
router.get("/applicantDetailsList", Entitycontroller.ApplicantDetailsList); router.get("/applicantDetailsList", Entitycontroller.ApplicantDetailsList);
// Applicants relationship List Api // // Applicants relationship List Api
/** /**
* @swagger * @swagger
* /api/applicantRelationshipList: * /api/applicantRelationshipList:
@ -83,7 +83,7 @@ router.get("/applicantDetailsList", Entitycontroller.ApplicantDetailsList);
*/ */
router.get("/applicantRelationshipList", Entitycontroller.ApplicantRelationshipList); router.get("/applicantRelationshipList", Entitycontroller.ApplicantRelationshipList);
// Residence Address Details List Api // // Residence Address Details List Api
/** /**
* @swagger * @swagger
* /api/residenceAddressDetailsList: * /api/residenceAddressDetailsList:
@ -104,7 +104,7 @@ router.get("/applicantRelationshipList", Entitycontroller.ApplicantRelationshipL
*/ */
router.get("/residenceAddressDetailsList", Entitycontroller.ResidenceAddressDetailsList); router.get("/residenceAddressDetailsList", Entitycontroller.ResidenceAddressDetailsList);
// Property Ownership Income Considered Details List Api // // Property Ownership Income Considered Details List Api
/** /**
* @swagger * @swagger
* /api/propertyOwnershipList: * /api/propertyOwnershipList:
@ -125,7 +125,7 @@ router.get("/residenceAddressDetailsList", Entitycontroller.ResidenceAddressDeta
*/ */
router.get("/propertyOwnershipList", Entitycontroller.PropertyOwnershipList); router.get("/propertyOwnershipList", Entitycontroller.PropertyOwnershipList);
// Create new Entity Details // // Create new Entity Details
/** /**
* @swagger * @swagger
* definitions: * definitions:
@ -172,7 +172,7 @@ router.get("/propertyOwnershipList", Entitycontroller.PropertyOwnershipList);
*/ */
router.post("/createEntityDetails", Entitycontroller.createEntityDetails); 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); router.post("/createApplicantDetails", Entitycontroller.createApplicantDetails);