Overview
Summary
Contact
Donate
Imprint
Prompt for the
RouteSegmentView
Please create a React-JS view called "RouteSegmentView" for the fields of the RouteSegment entity. The RouteSegmentView must contain the following fields: - name: Flight type: Flight - name: Latitude type: DOUBLE - name: Longitude type: DOUBLE - name: PlannedAltitudeFt type: INT - name: PlannedSpeedKt type: INT - name: SequenceNumber type: INT The data source for the [Flight] select control should be loaded from the relative URL: "/FlightService/flight" (HTTP-GET) An existing RouteSegment entity should be loaded from the relative URL: "/FlightService/routesegment/{id}" (HTTP-GET) If a new RouteSegment entity has been created, the new entity should be posted to the relative URL: "/FlightService/routesegment" (HTTP-POST) If an existing RouteSegment entity has been updated, the modified entity should be sent to the relative URL: "/FlightService/routesegment/{id}" (HTTP-PUT) If an existing RouteSegment entity has to be deleted, the following relative URL should be called: "/FlightService/routesegment/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint