Overview
Summary
Contact
Donate
Imprint
Prompt for the
RouteWaypointView
Please create a React-JS view called "RouteWaypointView" for the fields of the RouteWaypoint entity. The RouteWaypointView must contain the following fields: - name: EstimatedTimeUtc type: DATE - name: Latitude type: STRING - name: Longitude type: STRING - name: Route type: Route - name: SequenceNumber type: LONG The data source for the [Route] select control should be loaded from the relative URL: "/PortService/route" (HTTP-GET) An existing RouteWaypoint entity should be loaded from the relative URL: "/SubscriptionPlanService/routewaypoint/{id}" (HTTP-GET) If a new RouteWaypoint entity has been created, the new entity should be posted to the relative URL: "/SubscriptionPlanService/routewaypoint" (HTTP-POST) If an existing RouteWaypoint entity has been updated, the modified entity should be sent to the relative URL: "/SubscriptionPlanService/routewaypoint/{id}" (HTTP-PUT) If an existing RouteWaypoint entity has to be deleted, the following relative URL should be called: "/SubscriptionPlanService/routewaypoint/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint