Overview
Summary
Contact
Donate
Imprint
Prompt for the
JobApplicationView
Please create a React-JS view called "JobApplicationView" for the fields of the JobApplication entity. The JobApplicationView must contain the following fields: - name: ApplicantName type: STRING - name: Email type: STRING - name: JobPosting type: JobPosting - name: Notes type: STRING - name: Phone type: STRING - name: Status type: STRING - name: SubmittedOn type: DATE The data source for the [JobPosting] select control should be loaded from the relative URL: "/LocationService/jobposting" (HTTP-GET) An existing JobApplication entity should be loaded from the relative URL: "/PersonService/jobapplication/{id}" (HTTP-GET) If a new JobApplication entity has been created, the new entity should be posted to the relative URL: "/PersonService/jobapplication" (HTTP-POST) If an existing JobApplication entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/jobapplication/{id}" (HTTP-PUT) If an existing JobApplication entity has to be deleted, the following relative URL should be called: "/PersonService/jobapplication/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint