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