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: ApplicantUser type: UserAccount - name: CoverLetter type: STRING - name: IsEasyApply type: BOOL - name: Job type: Job - name: Source type: STRING - name: Status type: STRING - name: SubmittedAt type: DATE The data source for the [ApplicantUser] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Job] select control should be loaded from the relative URL: "/UserAccountService/job" (HTTP-GET) An existing JobApplication entity should be loaded from the relative URL: "/UserAccountService/jobapplication/{id}" (HTTP-GET) If a new JobApplication entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/jobapplication" (HTTP-POST) If an existing JobApplication entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/jobapplication/{id}" (HTTP-PUT) If an existing JobApplication entity has to be deleted, the following relative URL should be called: "/UserAccountService/jobapplication/{id}" (HTTP-DELETE) Add a HTML table to the view with the following JobApplicationMessage columns: - column: SenderUser - column: SentAt - column: Body - column: JobApplication The table should have the title "JobApplicationMessages" und the data must be loaded from the server with the following relative URL: "/SchoolService/jobapplicationmessage/jobapplication/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint