Overview
Summary
Contact
Donate
Imprint
Prompt for the
FleetVesselView
Please create a React-JS view called "FleetVesselView" for the fields of the FleetVessel entity. The FleetVesselView must contain the following fields: - name: AddedUtc type: DATE - name: Fleet type: Fleet - name: Notes type: STRING - name: Vessel type: Vessel The data source for the [Vessel] select control should be loaded from the relative URL: "/VesselService/vessel" (HTTP-GET) The data source for the [Fleet] select control should be loaded from the relative URL: "/FleetService/fleet" (HTTP-GET) An existing FleetVessel entity should be loaded from the relative URL: "/FleetService/fleetvessel/{id}" (HTTP-GET) If a new FleetVessel entity has been created, the new entity should be posted to the relative URL: "/FleetService/fleetvessel" (HTTP-POST) If an existing FleetVessel entity has been updated, the modified entity should be sent to the relative URL: "/FleetService/fleetvessel/{id}" (HTTP-PUT) If an existing FleetVessel entity has to be deleted, the following relative URL should be called: "/FleetService/fleetvessel/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint