Overview
Summary
Contact
Donate
Imprint
Prompt for the
MissionPayloadView
Please create a React-JS view called "MissionPayloadView" for the fields of the MissionPayload entity. The MissionPayloadView must contain the following fields: - name: Deployed type: BOOL - name: DeploymentTime type: DATE - name: Mission type: Mission - name: Notes type: STRING - name: Payload type: Payload - name: PrimaryPayload type: BOOL The data source for the [Payload] select control should be loaded from the relative URL: "/CustomerService/payload" (HTTP-GET) The data source for the [Mission] select control should be loaded from the relative URL: "/MissionService/mission" (HTTP-GET) An existing MissionPayload entity should be loaded from the relative URL: "/CustomerService/missionpayload/{id}" (HTTP-GET) If a new MissionPayload entity has been created, the new entity should be posted to the relative URL: "/CustomerService/missionpayload" (HTTP-POST) If an existing MissionPayload entity has been updated, the modified entity should be sent to the relative URL: "/CustomerService/missionpayload/{id}" (HTTP-PUT) If an existing MissionPayload entity has to be deleted, the following relative URL should be called: "/CustomerService/missionpayload/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint