app.route(`${process.env.API_BASE}contacts/:contactId`)
            // get specific contact
            .get(this.contactController.getContactWithID)
            .put(this.contactController.updateContact)
            .delete(this.contactController.deleteContact);