Overview
Summary
Contact
Donate
Imprint
Prompt for the
ProgramView
Please create a React-JS view called "ProgramView" for the fields of the Program entity. The ProgramView must contain the following fields: - name: Company type: Company - name: Description type: STRING - name: EndDate type: DATE - name: Name type: STRING - name: ProgramType type: STRING - name: StartDate type: DATE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Program entity should be loaded from the relative URL: "/ProgramService/program/{id}" (HTTP-GET) If a new Program entity has been created, the new entity should be posted to the relative URL: "/ProgramService/program" (HTTP-POST) If an existing Program entity has been updated, the modified entity should be sent to the relative URL: "/ProgramService/program/{id}" (HTTP-PUT) If an existing Program entity has to be deleted, the following relative URL should be called: "/ProgramService/program/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ProgramParticipation columns: - column: EndDate - column: StartDate - column: ParticipantCompany - column: ParticipantPerson - column: Program - column: Role - column: Outcome The table should have the title "ProgramParticipations" und the data must be loaded from the server with the following relative URL: "/CompanyService/programparticipation/program/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint