Overview
Summary
Contact
Donate
Imprint
Prompt for the
CrewedMissionView
Please create a React-JS view called "CrewedMissionView" for the fields of the CrewedMission entity. The CrewedMissionView must contain the following fields: - name: CrewedProgram type: CrewedProgram - name: Destination type: STRING - name: Launch type: Launch - name: Notes type: STRING - name: SpacecraftName type: STRING The data source for the [CrewedProgram] select control should be loaded from the relative URL: "/CountryService/crewedprogram" (HTTP-GET) The data source for the [Launch] select control should be loaded from the relative URL: "/LaunchVehicleService/launch" (HTTP-GET) An existing CrewedMission entity should be loaded from the relative URL: "/OperatorService/crewedmission/{id}" (HTTP-GET) If a new CrewedMission entity has been created, the new entity should be posted to the relative URL: "/OperatorService/crewedmission" (HTTP-POST) If an existing CrewedMission entity has been updated, the modified entity should be sent to the relative URL: "/OperatorService/crewedmission/{id}" (HTTP-PUT) If an existing CrewedMission entity has to be deleted, the following relative URL should be called: "/OperatorService/crewedmission/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint